diff --git a/CHANGELOG.md b/CHANGELOG.md index 87a837ae..4fa11072 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## v1.10.0 (2023-09-16) + +### Feat + +- **character**: mark characters as dead +- **misc**: improve /changelog to specify versions (#57) + +### Fix + +- **gameplay**: add hints to use macros when rolling traits +- **admin**: add interaction user to check to `/admin settings` +- **storyteller**: update traits displays friendly error when trait not found +- **bot**: send changelog on connect (#56) + +### Refactor + +- **bot**: add newly joined guilds to the database + ## v1.9.3 (2023-09-10) ### Refactor diff --git a/pyproject.toml b/pyproject.toml index 4c22cd0e..5dddb69f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ name = "valentina" readme = "README.md" repository = "https://github.com/natelandau/valentina" - version = "1.9.3" + version = "1.10.0" [tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts valentina = "valentina.main:app" @@ -60,7 +60,7 @@ bump_message = "bump(release): v$current_version → v$new_version" tag_format = "v$version" update_changelog_on_bump = true - version = "1.9.3" + version = "1.10.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 f09d3cd9..bb5e4baa 100644 --- a/src/valentina/__version__.py +++ b/src/valentina/__version__.py @@ -1,2 +1,2 @@ """Valentina version.""" -__version__ = "1.9.3" +__version__ = "1.10.0"