Skip to content

Commit

Permalink
Release version 0.1.25
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 Apr 19, 2024
1 parent d3c30fa commit f5143df
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.24
current_version = 0.1.25
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 @@ -5,6 +5,13 @@ This document outlines the list of changes to ridgeplot between each release. Fo
Unreleased changes
------------------

- ...

---

0.1.25
------

This release contains a number of improvements to the docs, API reference, CI/CD logic (incl. official support for Python 3.12), and other minor internal changes.

### Documentation
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.24"
version = "0.1.25"
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.24"
__version__ = "0.1.25"
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.24"
assert v_public == "0.1.25"

0 comments on commit f5143df

Please sign in to comment.