From 68038d0559ba306395acc1abf6609e005f370b17 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Thu, 25 Jan 2024 11:13:38 -0500 Subject: [PATCH] release v6.0.1 --- docs/changelog.rst | 2 ++ vcr/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 969dd118..04f286a6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,8 @@ For a full list of triaged issues, bugs and PRs and what release they are target All help in providing PRs to close out bug issues is appreciated. Even if that is providing a repo that fully replicates issues. We have very generous contributors that have added these to bug issues which meant another contributor picked up the bug and closed it out. +- 6.0.1 + - Bugfix with to Tornado cassette generator (thanks @graingert) - 6.0.0 - BREAKING: Fix issue with httpx support (thanks @parkerhancock) in #784. NOTE: You may have to recreate some of your cassettes produced in previous releases due to the binary format being saved incorrectly in previous releases - BREAKING: Drop support for `boto` (vcrpy still supports boto3, but is dropping the deprecated `boto` support in this release. (thanks @jairhenrique) diff --git a/vcr/__init__.py b/vcr/__init__.py index 89572bf1..1a94d6e6 100644 --- a/vcr/__init__.py +++ b/vcr/__init__.py @@ -4,7 +4,7 @@ from .config import VCR from .record_mode import RecordMode as mode # noqa: F401 -__version__ = "6.0.0" +__version__ = "6.0.1" logging.getLogger(__name__).addHandler(NullHandler())