Skip to content

Commit

Permalink
Released 2.6.0 (#238)
Browse files Browse the repository at this point in the history
* Added support for Python 3.9 and 3.10 (#236)
* Added representation of subscripts (#237)
  • Loading branch information
mristin authored Nov 28, 2021
1 parent 3410fb8 commit 718ef17
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.6.0
=====
* Added support for Python 3.9 and 3.10 (#236)
* Added representation of subscripts (#237)

2.5.5
=====
* Fixed representation of numpy arrays (#232)
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.5.5'
__version__ = '2.6.0'
__author__ = 'Marko Ristin'
__copyright__ = 'Copyright 2019 Parquery AG'
__license__ = 'MIT'
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
setup(
name='icontract',
# Don't forget to update the version in __init__.py and CHANGELOG.rst!
version='2.5.5',
version='2.6.0',
description='Provide design-by-contract with informative violation messages.',
long_description=long_description,
url='https://github.com/Parquery/icontract',
author='Marko Ristin',
author_email='marko.ristin@gmail.com',
author_email='marko@ristin.ch',
classifiers=[
# yapf: disable
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 718ef17

Please sign in to comment.