Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2.7.3
=====
* Treat ``__setstate__`` as constructor (#311)

This is a patch release so that we can enable unpickling of class
instances where some of the attributes are not pickled and only restored
in ``__setstate__``.

2.7.2
=====
* Fix child invariants checked in ``super().__init__`` (#301)
Expand Down
2 changes: 1 addition & 1 deletion icontract/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# imports in setup.py.

# Don't forget to update the version in __init__.py and CHANGELOG.rst!
__version__ = "2.7.2"
__version__ = "2.7.3"
__author__ = "Marko Ristin"
__copyright__ = "Copyright 2019 Parquery AG"
__license__ = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
setup(
name="icontract",
# Don't forget to update the version in __init__.py and CHANGELOG.rst!
version="2.7.2",
version="2.7.3",
description="Provide design-by-contract with informative violation messages.",
long_description=long_description,
url="https://github.com/Parquery/icontract",
Expand Down