Skip to content

Commit

Permalink
Release version 0.1.26
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 Sep 18, 2024
1 parent 96983be commit ce371c7
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.25
current_version = 0.1.26
commit = True
commit_args = -s
message = Release version {new_version}
Expand Down
7 changes: 7 additions & 0 deletions docs/reference/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ Unreleased changes

- ...

---

0.1.26
------

- ...

### Breaking changes

- Dropped support for `statsmodels==0.14.2` due to import-time issue. See {gh-issue}`197` for more details. ({gh-pr}`198`)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "ridgeplot"
description = "Beautiful ridgeline plots in python"
version = "0.1.25"
version = "0.1.26"
authors = [
{ name = "Tomas Pereira de Vasconcelos" }
]
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.25"
__version__ = "0.1.26"
2 changes: 1 addition & 1 deletion tests/unit/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ def test_version() -> None:
from ridgeplot._version import __version__ as v_private

assert v_public is v_private
assert v_public == "0.1.25"
assert v_public == "0.1.26"

0 comments on commit ce371c7

Please sign in to comment.