diff --git a/CHANGELOG.md b/CHANGELOG.md index 43bf203a..d5ed3c7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). +## 1.2.0 - 2023-10-18 + + +### Features + +- added two new synonym generation routines, VerbPhraseVariantGenerator and TokenListReplacementGenerator +- synonym generators now cache results, and are thus much faster + + ## 1.1.2 - 2023-10-11 diff --git a/docs/_changelog.d/+newsyngeneration.feature.rst b/docs/_changelog.d/+newsyngeneration.feature.rst deleted file mode 100644 index 9708ef3c..00000000 --- a/docs/_changelog.d/+newsyngeneration.feature.rst +++ /dev/null @@ -1 +0,0 @@ -added two new synonym generation routines, VerbPhraseVariantGenerator and TokenListReplacementGenerator diff --git a/docs/_changelog.d/+syngenerationcache.feature.rst b/docs/_changelog.d/+syngenerationcache.feature.rst deleted file mode 100644 index f7f4ab15..00000000 --- a/docs/_changelog.d/+syngenerationcache.feature.rst +++ /dev/null @@ -1 +0,0 @@ -synonym generators now cache results, and are thus much faster diff --git a/kazu/__init__.py b/kazu/__init__.py index 72f26f59..c68196d1 100644 --- a/kazu/__init__.py +++ b/kazu/__init__.py @@ -1 +1 @@ -__version__ = "1.1.2" +__version__ = "1.2.0"