From 0cf11d4525a706fd807ffb9f5d35a8c8f7a9ef53 Mon Sep 17 00:00:00 2001 From: Luiz Menezes Date: Wed, 19 Sep 2018 11:46:08 -0300 Subject: [PATCH] Bump version to 2.0.0 --- docs/changelog.rst | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 9d3b393..a00dcc6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,5 +1,12 @@ Changelog --------- +- 2.0.0 - Support python 3.7 (fix httplib2 and urllib2, thanks @felixonmars) + [#356] Fixes `before_record_response` so the original response isn't changed (thanks @kgraves) + Fix requests stub when using proxy (thanks @samuelfekete @daneoshiga) + (only for aiohttp stub) Drop support to python 3.4 asyncio.coroutine (aiohttp doesn't support python it anymore) + Fix aiohttp stub to work with aiohttp client (thanks @stj) + Fix aiohttp stub to accept content type passed + Improve docs (thanks @adamchainz) - 1.13.0 - Fix support to latest aiohttp version (3.3.2). Fix content-type bug in aiohttp stub. Save URL with query params properly when using aiohttp. - 1.12.0 - Fix support to latest aiohttp version (3.2.1), Adapted setup to PEP508, Support binary responses on aiohttp, Dropped support for EOL python versions (2.6 and 3.3) - 1.11.1 Fix compatibility with newest requests and urllib3 releases diff --git a/setup.py b/setup.py index 65c0773..54c0607 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ if sys.version_info[0] == 2: setup( name='vcrpy', - version='1.13.0', + version='2.0.0', description=( "Automatically mock your HTTP interactions to simplify and " "speed up testing"