Skip to content

Commit

Permalink
Release version 0.1.21
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 Jan 27, 2023
1 parent 583e5f1 commit 224e1e5
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.20
current_version = 0.1.21
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 @@ -6,6 +6,11 @@ the [commit logs](https://github.com/tpvasconcelos/ridgeplot/commits/).
Unreleased changes
------------------

- ...

0.1.21
------

### Features

- 🔧 Add `ridgeplot.datasets.load_probly()` helper function to load the `probly` toy dataset. The
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.20
version = 0.1.21
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.20"
__version__ = "0.1.21"
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.20"
assert v_public == "0.1.21"

0 comments on commit 224e1e5

Please sign in to comment.