Skip to content

Commit

Permalink
[DOP-22129] Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Jan 28, 2025
1 parent fcc1523 commit a4b5ad6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@ venv-cleanup: ##@Env Cleanup venv
@rm -rf .venv || true
python3 -m venv .venv
${PIP} install -U setuptools wheel pip
${PIP} install poetry
${PIP} install "poetry<2" poetry-bumpversion

venv-install: ##@Env Install requirements to venv
${POETRY} config virtualenvs.create false
${POETRY} self add poetry-bumpversion
${POETRY} install --no-root --all-extras --with dev,test,docs $(ARGS)


Expand Down
3 changes: 3 additions & 0 deletions docs/changelog/1.1.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ Improvements

- Add compatibility with ``Python 3.13`` (:issue:`94`)
- Replace outdated ``python-jose`` dependency with ``authlib.jose``, to fix security issues. (:issue:`97`)

Note: preliminary release 1.1.0 was yanked from PyPI because it has wrong ``horizon.__version__`` value.
The source code of 1.1.1 and dependencies are just the same as 1.1.0.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.1")
ver = Version.parse("1.1.2")
version = ver.base_version
# The full version, including alpha/beta/rc tags.
release = ver.public
Expand Down
2 changes: 1 addition & 1 deletion horizon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.1"
_raw_version = "1.1.2"

# version always contain only release number like 0.0.1
__version__ = ".".join(_raw_version.split(".")[:3])
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "data-horizon"
version = "1.1.1"
version = "1.1.2"
license = "Apache-2.0"
description = "Horizon REST API + client"
authors = ["DataOps.ETL <[email protected]>"]
Expand Down

0 comments on commit a4b5ad6

Please sign in to comment.