diff --git a/CHANGELOG.md b/CHANGELOG.md index ef503707..b30725b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## v2.5.0 (2024-06-18) + +### Feat + +- **campaign**: set campaign from discord channel category (#157) + +### Fix + +- **changelog**: don't repost version on bot connect (#156) +- fewer errant line breaks in embeds (#155) +- **gameplay**: improve roll display (#154) + ## v2.4.1 (2024-06-14) ### Fix diff --git a/pyproject.toml b/pyproject.toml index b1e8a9d9..50b5521c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ name = "valentina" readme = "README.md" repository = "https://github.com/natelandau/valentina" - version = "2.4.1" + version = "2.5.0" [tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts valentina = "valentina.main:app" @@ -63,7 +63,7 @@ changelog_merge_prerelease = true tag_format = "v$version" update_changelog_on_bump = true - version = "2.4.1" + version = "2.5.0" version_files = ["pyproject.toml:version", "src/valentina/__version__.py:__version__"] [tool.coverage.report] # https://coverage.readthedocs.io/en/latest/config.html#report diff --git a/src/valentina/__version__.py b/src/valentina/__version__.py index 250181bd..fcd6923f 100644 --- a/src/valentina/__version__.py +++ b/src/valentina/__version__.py @@ -1,3 +1,3 @@ """Valentina version.""" -__version__ = "2.4.1" +__version__ = "2.5.0"