Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rambo committed Oct 25, 2023
1 parent 2fd864d commit 5e9d5b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rmcli"
version = "0.1.0"
version = "0.2.0"
description = "CLI interface to RASENMAEHER API"
authors = ["Eero af Heurlin <eero.afheurlin@iki.fi>"]
homepage = "https://github.com/pvarki/python-rasenmaeher-rmcli/"
Expand Down
2 changes: 1 addition & 1 deletion src/rmcli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
""" CLI interface to RASENMAEHER API """
__version__ = "0.1.0" # NOTE Use `bump2version --config-file patch` to bump versions correctly
__version__ = "0.2.0" # NOTE Use `bump2version --config-file patch` to bump versions correctly
2 changes: 1 addition & 1 deletion tests/test_rmcli.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

def test_version() -> None:
"""Make sure version matches expected"""
assert __version__ == "0.1.0"
assert __version__ == "0.2.0"

0 comments on commit 5e9d5b3

Please sign in to comment.