Skip to content

Commit

Permalink
Bump version to 0.91.0
Browse files Browse the repository at this point in the history
- removed __version__
- can't make the poetry-bumpversion to update it; gave up
  • Loading branch information
lupko committed Mar 7, 2023
1 parent d5550a6 commit ff2d2de
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ dev:
python3.11 -m venv .venv-infra --upgrade-deps
.venv-infra/bin/pip3 install -r requirements-infra.txt
.venv-infra/bin/pre-commit install
.venv-infra/bin/poetry self add poetry-bumpversion
python3.11 -m venv .venv --upgrade-deps
source .venv/bin/activate && .venv-infra/bin/poetry install --no-root

Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "etcd3-client"
version = "0.90.0"
version = "0.91.0"
description = "Python client for the etcd3"
authors = ["GoodData Inc. <[email protected]>", "etcd3 authors"]
readme = "README.md"
Expand Down Expand Up @@ -33,8 +33,6 @@ pytest-cov = "^4.0.0"
pytest-docker = "~1.0.1"
types-protobuf= "~4.21.0.2"

[tool.poetry_bumpversion.file."etcd3/__init__.py"]

[tool.pytest.ini_options]
minversion = 7.0
pythonpath = [ "tests", "src" ]
Expand Down
3 changes: 0 additions & 3 deletions src/etcd3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,3 @@ def as_txn_op_result(response: TxResponse) -> etcdrpc.TxnResponse:
)

return response.response_txn


__version__ = "0.90.0"

0 comments on commit ff2d2de

Please sign in to comment.