diff --git a/setup.py b/setup.py index e72ab27..a36721d 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def package_files(directory): setup( name="unfold", - version="1.1.2", + version="1.1.3", python_requires=">=3.9", packages=packages, author="Romain Sacchi ", diff --git a/unfold/__init__.py b/unfold/__init__.py index 54983e6..eb2c25f 100644 --- a/unfold/__init__.py +++ b/unfold/__init__.py @@ -1,5 +1,5 @@ __all__ = ("Unfold", "Fold") -__version__ = (1, 1, 2) +__version__ = (1, 1, 3) from .fold import Fold from .unfold import Unfold