From dea027397eaf027d157fa2e26012f2e55f111281 Mon Sep 17 00:00:00 2001 From: guglielmo Date: Tue, 19 Oct 2021 19:16:10 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.1.6=20=E2=86=92=201.1.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ooetl/__init__.py | 2 +- ooetl/docs/conf.py | 2 +- ooetl/tests/test_ooetl.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ooetl/__init__.py b/ooetl/__init__.py index 704e580..9fb7e54 100644 --- a/ooetl/__init__.py +++ b/ooetl/__init__.py @@ -3,7 +3,7 @@ from .transformations import DummyTransformation -__version__ = '1.1.6' +__version__ = '1.1.7' __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 8e9036a..321e1a1 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.6' +release = '1.1.7' # 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 7171be8..e6feff3 100644 --- a/ooetl/tests/test_ooetl.py +++ b/ooetl/tests/test_ooetl.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '1.1.6' + assert __version__ == '1.1.7' diff --git a/pyproject.toml b/pyproject.toml index 0276e88..e6113cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ooetl" -version = "1.1.6" +version = "1.1.7" description = "Minimal opinionated object oriented ETL framework" authors = ["guglielmo "] readme = "README.md" diff --git a/setup.cfg b/setup.cfg index 23eb3b6..06da5cf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.6 +current_version = 1.1.7 commit = True tag = True tag_name = v{new_version}