diff --git a/CHANGELOG.md b/CHANGELOG.md index a70575f2..e8806fbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## v1.0.0 (2023-07-17) + +### Feat + +- **admin**: use prefix commands in DMs for bot admin commands +- **gameplay**: add coinflip option +- **admin**: add moderation commands + +### Fix + +- **character**: class specific traits +- **database**: improve database schema (#22) +- **character**: spending xp recognizes clan disciplines +- disallow thumbnails with bad http status +- **help**: improve help command + +### Refactor + +- favor methods on database objects +- reorganize package + ## v0.12.0 (2023-07-10) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 608b7245..034c8493 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ name = "valentina" readme = "README.md" repository = "https://github.com/natelandau/valentina" - version = "0.12.0" + version = "1.0.0" [tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts valentina = "valentina.main:app" @@ -58,7 +58,7 @@ bump_message = "bump(release): v$current_version → v$new_version" tag_format = "v$version" update_changelog_on_bump = true - version = "0.12.0" + version = "1.0.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 44bcd710..f21cbe95 100644 --- a/src/valentina/__version__.py +++ b/src/valentina/__version__.py @@ -1,2 +1,2 @@ """Valentina version.""" -__version__ = "0.12.0" +__version__ = "1.0.0"