Skip to content

Commit 57a934d

Browse files
committed
version bump to 1.10.0
1 parent f9d7ccd commit 57a934d

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

Diff for: README.rst

+14
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,20 @@ VCR.py will detect the absence of a cassette file and once again record
4141
all HTTP interactions, which will update them to correspond to the new
4242
API.
4343

44+
Support
45+
-------
46+
47+
VCR.py works great with the following HTTP clients:
48+
49+
- requests
50+
- aiohttp
51+
- urllib3
52+
- tornado
53+
- urllib2
54+
- boto
55+
- boto3
56+
57+
4458
License
4559
=======
4660

Diff for: docs/changelog.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Changelog
22
---------
3+
- 1.10.0 Add support for aiohttp (thanks @lamenezes)
34
- 1.9.0 Add support for boto3 (thanks @desdm, @foorbarna). Fix deepcopy issue
45
for response headers when `decode_compressed_response` is enabled (thanks
56
@nickdirienzo)

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def run_tests(self):
5151

5252
setup(
5353
name='vcrpy',
54-
version='1.9.0',
54+
version='1.10.0',
5555
description=(
5656
"Automatically mock your HTTP interactions to simplify and "
5757
"speed up testing"

0 commit comments

Comments
 (0)