From b122b5c70101a4167e954b1c101d0cfcc8d3573e Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Mon, 8 Dec 2025 11:37:31 -0500 Subject: [PATCH] Release v8.1.0 --- docs/changelog.rst | 8 ++++++++ vcr/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 726378a..fc468d9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,14 @@ 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. +- 8.1.0 + - Enable brotli decompression if available (via ``brotli``, ``brotlipy`` or ``brotlicffi``) (#620) - thanks @immerrr + - Fix aiohttp allowing both ``data`` and ``json`` arguments when one is None (#624) - thanks @leorochael + - Fix usage of io-like interface with VCR.py (#906) - thanks @tito and @kevdevg + - Migrate to declarative Python package config (#767) - thanks @deronnax + - Various linting fixes - thanks @jairhenrique + - CI: bump actions/checkout from 5 to 6 (#955) + - 8.0.0 - BREAKING: Drop support for Python 3.9 (major version bump) - thanks @jairhenrique - BREAKING: Drop support for urllib3 < 2 - fixes CVE warnings from urllib3 1.x (#926, #880) - thanks @jairhenrique diff --git a/vcr/__init__.py b/vcr/__init__.py index 09235e3..eb3feac 100644 --- a/vcr/__init__.py +++ b/vcr/__init__.py @@ -4,7 +4,7 @@ from logging import NullHandler from .config import VCR from .record_mode import RecordMode as mode # noqa: F401 -__version__ = "8.0.0" +__version__ = "8.1.0" logging.getLogger(__name__).addHandler(NullHandler())