diff --git a/CHANGELOG.md b/CHANGELOG.md index 26957fd..cec179a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2] - 2023-11-11 + +### Added + +- Automatic detection of gender-specific string variants to `cbpickaxe_extract_translation`. (#3) +- Partial support for `ElementalType`s in the Python API. + ## [0.1.1] - 2023-10-23 ### Added diff --git a/docs/source/conf.py b/docs/source/conf.py index b7ebf7a..e97b4f0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -9,7 +9,7 @@ project = "cbpickaxe" copyright = "2023, ExcaliburZero" author = "ExcaliburZero" -release = "0.1.1" +release = "0.1.2" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 7f5238b..1adca5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cbpickaxe" -version = "0.1.1" +version = "0.1.2" description = "A Python library and scripts for data mining the game Cassette Beasts." readme = "README.md" requires-python = ">=3.11"