Skip to content

Commit

Permalink
Bumped to 2.4.0 (#180)
Browse files Browse the repository at this point in the history
* Integrated with icontract-hypothesis (#179)
* Refactored for icontract-hypothesis (#178)
* Added special arguments `_ARGS` and `_KWARGS` (#176)
* Tested with typeguard (#175)
* Tested with `dataclasses.dataclass` (#173)
* Added invariants to namedtuple (#172)
* Added support for recomputation of f-strings (#170)
* Exempted `__new__` from invariant checks (#168)
* Added support for named expressions in contracts (#166)
  • Loading branch information
mristin authored Dec 16, 2020
1 parent 0246e03 commit 2bb37c6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
2.4.0
=====
* Integrated with icontract-hypothesis (#179)
* Refactored for icontract-hypothesis (#178)
* Added special arguments `_ARGS` and `_KWARGS` (#176)
* Tested with typeguard (#175)
* Tested with `dataclasses.dataclass` (#173)
* Added invariants to namedtuple (#172)
* Added support for recomputation of f-strings (#170)
* Exempted `__new__` from invariant checks (#168)
* Added support for named expressions in contracts (#166)

2.3.7
=====
* Acted upon deprecation warning ins ``ast`` module when generating the
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.3.7'
__version__ = '2.4.0'
__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 @@ -25,7 +25,7 @@
setup(
name='icontract',
# Don't forget to update the version in __init__.py and CHANGELOG.rst!
version='2.3.7',
version='2.4.0',
description='Provide design-by-contract with informative violation messages.',
long_description=long_description,
url='https://github.com/Parquery/icontract',
Expand Down

0 comments on commit 2bb37c6

Please sign in to comment.