diff --git a/CHANGES.txt b/CHANGES.txt index 79ebbd2..6b28976 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,10 @@ Revision history ---------------- -0.17.0, 2020-09-08 +0.17.1, 2020-09-09 + * Restrict package to Python >= 3.5 to not break unpinned Python 2 dependencies. Thanks @vphilippon + for this! + +0.17.0 (yanked for Python 2 compatibility), 2020-09-08 * Remove Python 2 support code. This includes dropping some compatibility code and the dependency on six. Thanks @djailla for this. * Fix #200, python 3 exception chaining. This is a minor backwards incompatibility, hence stepping diff --git a/README.rst b/README.rst index 355f953..f7a5435 100644 --- a/README.rst +++ b/README.rst @@ -674,6 +674,8 @@ Bastien Vallet https://github.com/djailla Ram Rachum https://github.com/cool-RR +Vincent Philippon https://github.com/vphilippon + Contributing ------------ diff --git a/_pyrsistent_version.py b/_pyrsistent_version.py index 435d64b..cbe8c74 100644 --- a/_pyrsistent_version.py +++ b/_pyrsistent_version.py @@ -1 +1 @@ -__version__ = '0.17.0' +__version__ = '0.17.1'