Skip to content

Commit 9c46831

Browse files
committed
release 4.2.0
1 parent fe59644 commit 9c46831

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

Diff for: docs/changelog.rst

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ For a full list of triaged issues, bugs and PRs and what release they are target
77

88
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.
99

10+
- 4.2.0
11+
- Drop support for python < 3.7, thanks @jairhenrique, @IvanMalison, @AthulMuralidhar
12+
- Various aiohtt bigfixes (thanks @pauloromeira and boechat107)
13+
- Bugfix: filter_post_data_parameters not working with aiohttp. Thank you @vprakashplanview, @scop, @jairhenrique, and @cinemascop89
14+
- Bugfix: Some random misspellings (thanks @scop)
15+
- Migrate the CI suite to Github Actions from Travis (thanks @jairhenrique and @cclauss)
16+
- Various documentation and code misspelling fixes (thanks @scop and @Justintime50)
17+
- Bugfix: httpx support (select between allow_redirects/follow_redirects) (thanks @immerrr)
18+
- Bugfix: httpx support (select between allow_redirects/follow_redirects) (thanks @immerrr)
1019
- 4.1.1
1120
- Fix HTTPX support for versions greater than 0.15 (thanks @jairhenrique)
1221
- Include a trailing newline on json cassettes (thanks @AaronRobson)

Diff for: vcr/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from logging import NullHandler
44
from .record_mode import RecordMode as mode # noqa import is not used in this file
55

6-
__version__ = "4.1.1"
6+
__version__ = "4.2.0"
77

88
logging.getLogger(__name__).addHandler(NullHandler())
99

0 commit comments

Comments
 (0)