diff --git a/README.rst b/README.rst index 293cb273..85854f55 100644 --- a/README.rst +++ b/README.rst @@ -41,6 +41,20 @@ VCR.py will detect the absence of a cassette file and once again record all HTTP interactions, which will update them to correspond to the new API. +Support +------- + +VCR.py works great with the following HTTP clients: + +- requests +- aiohttp +- urllib3 +- tornado +- urllib2 +- boto +- boto3 + + License ======= diff --git a/docs/changelog.rst b/docs/changelog.rst index 3b9d0a8e..06f54a38 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,5 +1,6 @@ Changelog --------- +- 1.10.0 Add support for aiohttp (thanks @lamenezes) - 1.9.0 Add support for boto3 (thanks @desdm, @foorbarna). Fix deepcopy issue for response headers when `decode_compressed_response` is enabled (thanks @nickdirienzo) diff --git a/setup.py b/setup.py index 231f79d8..6ca61d6a 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def run_tests(self): setup( name='vcrpy', - version='1.9.0', + version='1.10.0', description=( "Automatically mock your HTTP interactions to simplify and " "speed up testing"