diff --git a/ooetl/__init__.py b/ooetl/__init__.py index 9618609..db6f74b 100644 --- a/ooetl/__init__.py +++ b/ooetl/__init__.py @@ -3,7 +3,7 @@ from .transformations import DummyTransformation -__version__ = '1.1.3' +__version__ = '1.1.4' __description__ = "A framework to write ETL processes at the Openpolis Foundation." """A framework to write ETL processes at the Openpolis Foundation. diff --git a/ooetl/docs/conf.py b/ooetl/docs/conf.py index d4fb798..384d821 100644 --- a/ooetl/docs/conf.py +++ b/ooetl/docs/conf.py @@ -63,7 +63,7 @@ # The short X.Y version. version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.1.3' +release = '1.1.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/ooetl/tests/test_ooetl.py b/ooetl/tests/test_ooetl.py index 37bc334..44250ac 100644 --- a/ooetl/tests/test_ooetl.py +++ b/ooetl/tests/test_ooetl.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '1.1.3' + assert __version__ == '1.1.4' diff --git a/pyproject.toml b/pyproject.toml index f2cebac..99b7fc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ooetl" -version = "1.1.3" +version = "1.1.4" description = "Minimal opinionated object oriented ETL framework" authors = ["guglielmo "] readme = "README.md" diff --git a/setup.cfg b/setup.cfg index f53688e..c68efbc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.3 +current_version = 1.1.4 commit = True tag = True tag_name = v{new_version}