diff --git a/docs/changelog.rst b/docs/changelog.rst index 08af8d0e..9382a7b9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,19 @@ 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. +- 5.1.0 + - Use ruff for linting (instead of current flake8/isort/pyflakes) - thanks @jairhenrique + - Enable rule B (flake8-bugbear) on ruff - thanks @jairhenrique + - Configure read the docs V2 - thanks @jairhenrique + - Fix typo in docs - thanks @quasimik + - Make json.loads of Python >=3.6 decode bytes by itself - thanks @hartwork + - Fix body matcher for chunked requests (fixes #734) - thanks @hartwork + - Fix query param filter for aiohttp (fixes #517) - thanks @hartwork and @salomvary + - Remove unnecessary dependency on six. - thanks @charettes + - build(deps): update sphinx requirement from <7 to <8 - thanks @jairhenrique + - Add action to validate docs - thanks @jairhenrique + - Add editorconfig file - thanks @jairhenrique + - Drop iscoroutinefunction fallback function for unsupported python thanks @jairhenrique - 5.0.0 - BREAKING CHANGE: Drop support for Python 3.7. 3.7 is EOL as of 6/27/23 Thanks @jairhenrique - BREAKING CHANGE: Custom Cassette persisters no longer catch ValueError. If you have implemented a custom persister (has anyone implemented a custom persister? Let us know!) then you will need to throw a CassetteNotFoundError when unable to find a cassette. See #681 for discussion and reason for this change. Thanks @amosjyng for the PR and the review from @hartwork diff --git a/vcr/__init__.py b/vcr/__init__.py index ac7377ab..ad8cdc1c 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__ = "5.0.0" +__version__ = "5.1.0" logging.getLogger(__name__).addHandler(NullHandler())