From a351621d9221f19c43d6d1f5e4422433158ae62a Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Fri, 31 Jul 2020 09:40:27 -0500 Subject: [PATCH] update changelog and bump version --- docs/changelog.rst | 9 +++++++-- vcr/__init__.py | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index f149199..2d14fa9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,8 +7,13 @@ 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. -- UNRELEASED - - ... +- 4.1.0 + - Add support for httpx!! (thanks @herdigiorgi) + - Add the new `allow_playback_repeats` option (thanks @tysonholub) + - Several aiohttp improvements (cookie support, multiple headers with same key) (Thanks @pauloromeira) + - Use enums for record modes (thanks @aaronbannin) + - Bugfix: Do not redirect on 304 in aiohttp (Thanks @royjs) + - Bugfix: Fix test suite by switching to mockbin (thanks @jairhenrique) - 4.0.2 - Fix mock imports as reported in #504 by @llybin. Thank you. - 4.0.1 diff --git a/vcr/__init__.py b/vcr/__init__.py index c456960..9676b84 100644 --- a/vcr/__init__.py +++ b/vcr/__init__.py @@ -3,7 +3,7 @@ from .config import VCR from logging import NullHandler from .record_mode import RecordMode as mode # noqa import is not used in this file -__version__ = "4.0.2" +__version__ = "4.1.0" logging.getLogger(__name__).addHandler(NullHandler())