Skip to content

Commit

Permalink
Release version 0.1.20
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Pereira de Vasconcelos <[email protected]>
  • Loading branch information
tpvasconcelos committed Aug 20, 2022
1 parent bf20781 commit d509e5b
Show file tree
Hide file tree
Showing 5 changed files with 9 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.19
current_version = 0.1.20
commit = True
commit_args = -s
message = Release version {new_version}
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ Unreleased changes

- ...

0.1.20
------

- ...

0.1.19
------

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ridgeplot
version = 0.1.19
version = 0.1.20
description = Beautiful ridgeline plots in python
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion src/ridgeplot/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.19"
__version__ = "0.1.20"
2 changes: 1 addition & 1 deletion tests/unit/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ def test_version() -> None:
from ridgeplot._version import __version__ as v_private

assert v_public is v_private
assert v_public == "0.1.19"
assert v_public == "0.1.20"

0 comments on commit d509e5b

Please sign in to comment.