diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f4bbb8c..c743698c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v1.13.0 (2023-10-02) + +### Feat + +- **misc**: add random name generator `/name_gen` (#76) +- **character**: new chargen wizard with `character create` (#75) + ## v1.12.0 (2023-09-28) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 961ccc5c..c5be1dab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ name = "valentina" readme = "README.md" repository = "https://github.com/natelandau/valentina" - version = "1.12.0" + version = "1.13.0" [tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts valentina = "valentina.main:app" @@ -61,7 +61,7 @@ bump_message = "bump(release): v$current_version → v$new_version" tag_format = "v$version" update_changelog_on_bump = true - version = "1.12.0" + version = "1.13.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 a97a1435..a0c01ecf 100644 --- a/src/valentina/__version__.py +++ b/src/valentina/__version__.py @@ -1,2 +1,2 @@ """Valentina version.""" -__version__ = "1.12.0" +__version__ = "1.13.0"