diff --git a/docs/changelog/1.0.3.rst b/docs/changelog/1.1.1.rst similarity index 91% rename from docs/changelog/1.0.3.rst rename to docs/changelog/1.1.1.rst index ac4f522..cde271e 100644 --- a/docs/changelog/1.0.3.rst +++ b/docs/changelog/1.1.1.rst @@ -1,4 +1,4 @@ -1.0.3 (2025-01-28) +1.1.1 (2025-01-28) ================== Improvements diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index 400b2e8..890d04a 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -3,7 +3,7 @@ :caption: Changelog DRAFT - 1.0.3 + 1.1.1 1.0.2 1.0.1 1.0.0 diff --git a/docs/conf.py b/docs/conf.py index fb4f3fc..7cfc262 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -34,7 +34,7 @@ # The short X.Y version. # this value is updated automatically by `poetry version ...` and poetry-bumpversion plugin -ver = Version.parse("1.0.3") +ver = Version.parse("1.1.1") version = ver.base_version # The full version, including alpha/beta/rc tags. release = ver.public diff --git a/horizon/__init__.py b/horizon/__init__.py index 9f7b2fd..02edb6e 100644 --- a/horizon/__init__.py +++ b/horizon/__init__.py @@ -3,7 +3,7 @@ # _raw_version could contain pre-release version, like 0.0.1dev123 # value is updated automatically by `poetry version ...` and poetry-bumpversion plugin -_raw_version = "1.0.3" +_raw_version = "1.1.1" # version always contain only release number like 0.0.1 __version__ = ".".join(_raw_version.split(".")[:3]) diff --git a/pyproject.toml b/pyproject.toml index 57c432e..6e2e1fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "data-horizon" -version = "1.1.0" +version = "1.1.1" license = "Apache-2.0" description = "Horizon REST API + client" authors = ["DataOps.ETL "]