diff --git a/CHANGELOG.md b/CHANGELOG.md index 46df5947..11e9b49f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). +## 1.3.2 - 2023-11-21 + + +### Bugfixes + +- Hits with scores of 0.0 are no longer returned by DictionaryIndex +- Pin lightning-utilities dependency, a new version of which completely broke the model inference, despite lightning itself being pinned (they didn't pin lightning-utilities appropriately in the version we're using). + + ## 1.3.1 - 2023-11-15 diff --git a/docs/_changelog.d/+pinlightningutilities.bugfix.md b/docs/_changelog.d/+pinlightningutilities.bugfix.md deleted file mode 100644 index 053d8297..00000000 --- a/docs/_changelog.d/+pinlightningutilities.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Pin lightning-utilities dependency, a new version of which completely broke the model inference, despite lightning itself being pinned (they didn't pin lightning-utilities appropriately in the version we're using). diff --git a/docs/_changelog.d/+zeroscores.bugfix.rst b/docs/_changelog.d/+zeroscores.bugfix.rst deleted file mode 100644 index 33c7cff0..00000000 --- a/docs/_changelog.d/+zeroscores.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Hits with scores of 0.0 are no longer returned by DictionaryIndex diff --git a/kazu/__init__.py b/kazu/__init__.py index 9c73af26..f708a9b2 100644 --- a/kazu/__init__.py +++ b/kazu/__init__.py @@ -1 +1 @@ -__version__ = "1.3.1" +__version__ = "1.3.2"