Skip to content

Commit

Permalink
Prepare version v0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tobgu committed Jun 28, 2021
1 parent e3df30b commit 1b8e85e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 16 deletions.
16 changes: 13 additions & 3 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
Revision history
----------------
0.17.4, 2021-06-DD
* Release wheels...
* ...
0.18.0, 2021-06-28
* Fix #209 Update freeze recurse into pyrsistent data structures and thaw to recurse into lists and dicts,
Thanks @phil-arh for this!
NB! This is a backwards incompatible change! To keep the old behaviour pass `strict=False` to freeze and thaw.
* Fix #226, stop using deprecated exception.message. Thanks @hexagonrecursion for this!
* Fix #211, add union operator to persistent maps. Thanks @bowbahdoe for this!
* Fix #194, declare build dependencies through pyproject.toml. Thanks @jaraco for this!
* Officially drop Python 3.5 support.
* Fix #223, release wheels for all major platforms. Thanks @johnthagen for helping out with this!
* Fix #221, KeyError obscured by TypeError if key is a tuple. Thanks @ganwell for this!
* Fix LICENSE file name spelling. Thanks @ndowens and @barentsen for this!
* Fix #216, add abstractmethod decorator for CheckedType and ABCMeta for _CheckedTypeMeta. Thanks @ss18 for this!
* Fix #228, rename example classes in tests to avoid name clashes with pytest.

0.17.3, 2020-09-13
* Fix #208, release v0.17.3 with proper meta data requiring Python >= 3.5.
Expand Down
8 changes: 0 additions & 8 deletions Makefile

This file was deleted.

18 changes: 14 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,18 @@ Ram Rachum https://github.com/cool-RR
Vincent Philippon https://github.com/vphilippon
Andrey Bienkowski https://github.com/hexagonrecursion
Ethan McCue https://github.com/bowbahdoe
Jason R. Coombs https://github.com/jaraco
Nathan https://github.com/ndowens
Geert Barentsen https://github.com/barentsen
phil-arh https://github.com/phil-arh
Contributing
------------
Expand All @@ -707,13 +719,11 @@ Release
~~~~~~~
* `pip install -r requirements.txt`
* Update CHANGES.txt
* Update README with any new contributors and potential info needed.
* Update README.rst with any new contributors and potential info needed.
* Update _pyrsistent_version.py
* `rm -rf dist/* && python setup.py sdist`
* (`twine upload -r testpypi dist/*`), if testing the distribution on testpypi
* `twine upload dist/*`
* Commit and tag with new version: `git add -u . && git commit -m 'Prepare version vX.Y.Z' && git tag -a vX.Y.Z -m 'vX.Y.Z'`
* Push commit and tags: `git push && git push --tags`
* Build new release using Github actions
Project status
--------------
Expand Down
2 changes: 1 addition & 1 deletion _pyrsistent_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.17.4rc1'
__version__ = '0.18.0'

0 comments on commit 1b8e85e

Please sign in to comment.