Skip to content

Commit

Permalink
Bumped to 2.3.7 (#162)
Browse files Browse the repository at this point in the history
* Acted upon deprecation warning ins ``ast`` module when generating the
  violation error message.
  • Loading branch information
mristin authored Nov 7, 2020
1 parent df8c05d commit 0e1c143
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.3.7
=====
* Acted upon deprecation warning ins ``ast`` module when generating the
violation error message.

2.3.6
=====
* Denormalized icontract_meta so that icontract can be installed on
Expand Down
4 changes: 3 additions & 1 deletion icontract/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
# used to be referenced from setup.py and this file) since readthedocs had
# problems with installing icontract through pip on their servers with
# imports in setup.py.
__version__ = '2.3.6' # Don't forget to update the version in setup.py!

# Don't forget to update the version in __init__.py and CHANGELOG.rst!
__version__ = '2.3.7'
__author__ = 'Marko Ristin'
__copyright__ = 'Copyright 2019 Parquery AG'
__license__ = 'MIT'
Expand Down
12 changes: 0 additions & 12 deletions icontract_meta.py

This file was deleted.

3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
# imports in setup.py.
setup(
name='icontract',
version='2.3.6', # Don't forget to update the version in __init__.py!
# Don't forget to update the version in __init__.py and CHANGELOG.rst!
version='2.3.7',
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 0e1c143

Please sign in to comment.