From f9786c7aba34c6b65d33a624cac175796a76e6fa Mon Sep 17 00:00:00 2001 From: Marko Ristin-Kaufmann Date: Mon, 2 Oct 2023 10:49:04 +0200 Subject: [PATCH] Released 2.6.3 * Removed meta data files from setup.py (#262) * Added support for python 3.11 (#260) * Fixed in-progress set for async (#256) --- CHANGELOG.rst | 6 ++++++ icontract/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9ae7df5..03e9601 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +2.6.3 +===== +* Removed meta data files from setup.py (#262) +* Added support for python 3.11 (#260) +* Fixed in-progress set for async (#256) + 2.6.2 ===== * Added wheels to releases (#251) diff --git a/icontract/__init__.py b/icontract/__init__.py index 51089fd..608e419 100644 --- a/icontract/__init__.py +++ b/icontract/__init__.py @@ -8,7 +8,7 @@ # imports in setup.py. # Don't forget to update the version in __init__.py and CHANGELOG.rst! -__version__ = "2.6.2" +__version__ = "2.6.3" __author__ = "Marko Ristin" __copyright__ = "Copyright 2019 Parquery AG" __license__ = "MIT" diff --git a/setup.py b/setup.py index 1540fc4..ea9cee4 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name="icontract", # Don't forget to update the version in __init__.py and CHANGELOG.rst! - version="2.6.2", + version="2.6.3", description="Provide design-by-contract with informative violation messages.", long_description=long_description, url="https://github.com/Parquery/icontract",