diff --git a/setup.py b/setup.py index 0312a3d..fb393cd 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def package_files(directory): setup( name="unfold", - version="1.1.3", + version="1.1.4", python_requires=">=3.9", packages=packages, author="Romain Sacchi ", diff --git a/unfold/__init__.py b/unfold/__init__.py index eb2c25f..7222201 100644 --- a/unfold/__init__.py +++ b/unfold/__init__.py @@ -1,5 +1,5 @@ __all__ = ("Unfold", "Fold") -__version__ = (1, 1, 3) +__version__ = (1, 1, 4) from .fold import Fold from .unfold import Unfold