Skip to content

Commit

Permalink
Release version 0.1.23
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 11, 2023
1 parent 0b8dad0 commit 562e77b
Show file tree
Hide file tree
Showing 5 changed files with 11 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.22
current_version = 0.1.23
commit = True
commit_args = -s
message = Release version {new_version}
Expand Down
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ the [commit logs](https://github.com/tpvasconcelos/ridgeplot/commits/).
Unreleased changes
------------------

- ...

---

0.1.23
------

- Fix the references to the interactive Plotly IFrames
([#129](https://github.com/tpvasconcelos/ridgeplot/pull/129))

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.22
version = 0.1.23
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,3 +1,3 @@
from __future__ import annotations

__version__ = "0.1.22"
__version__ = "0.1.23"
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.22"
assert v_public == "0.1.23"

0 comments on commit 562e77b

Please sign in to comment.