diff --git a/docs/changelog.rst b/docs/changelog.rst index f92b89f..3b6e967 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,11 +1,20 @@ Changelog --------- -- 3.0.0 (UNRELEASED) - - Fix multiple requests being replayed per single request in aiohttp stub (@nickdirienzo) - - Add support for `request_info` on mocked responses in aiohttp stub (@nickdirienzo) - - ... -- 2.1.x (UNRELEASED) - - .... + +For a full list of triaged issues, bugs and PRs and what release they are targetted for please see the following link. + +`ROADMAP MILESTONES ` + +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. + +- 4.0.0 (UNRELEASED) + - Remove Python2 support + - Add Python 3.8 TravisCI support +- 3.0.0 + - This release is a breaking change as it changes how aiohttp follows redirects and your cassettes may need to be re-recorded with this update. + - Fix multiple requests being replayed per single request in aiohttp stub #495 (@nickdirienzo) + - Add support for `request_info` on mocked responses in aiohttp stub #495 (@nickdirienzo) + - doc: fixed variable name (a -> cass) in an example for rewind #492 (@yarikoptic) - 2.1.1 - Format code with black (@neozenith) - Use latest pypy3 in Travis (@hugovk) diff --git a/setup.py b/setup.py index 5b7826e..9f21a8b 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ if sys.version_info[0] == 2: setup( name="vcrpy", - version="2.1.1", + version="3.0.0", description=("Automatically mock your HTTP interactions to simplify and " "speed up testing"), long_description=long_description, author="Kevin McCarthy",