diff --git a/CHANGELOG.md b/CHANGELOG.md index 48c76b43..da00a95b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/). +## 1.5.0 - 2024-01-19 + + +### Features + +- Added new cleanup action: DropMappingsByParserNameRankAction +- Added new disambiguation strategy: PreferNearestEmbeddingToDefaultLabelDisambiguationStrategy. +- DefinedElsewhereInDocumentDisambiguationStrategy has slightly changed, so that it will only return mappings that were found elsewhere in the document, rather than the whole EquivalentIdSet where those ids were contained +- New disambiguation methodology GildaTfIdfDisambiguationStrategy. +- OpenTargetsTargetOntologyParser now has a biotype filter parameter. + +### Deprecations and Removals + +- Deprecated `GildaUtils.replace_dashes` in favour of `GildaUtils.split_on_dashes_or_space`, as the latter improves efficiency in Kazu. + `GildaUtils.replace_dashes` will continue to work until kazu 1.6, but using it will produce a `DeprecationWarning`. + Please [open a GitHub issue](https://github.com/AstraZeneca/KAZU/issues/new) if you wish this to remain. + + ## 1.4.0 - 2023-12-01 diff --git a/docs/_changelog.d/+biotypefilter.feature.rst b/docs/_changelog.d/+biotypefilter.feature.rst deleted file mode 100644 index 3ed37931..00000000 --- a/docs/_changelog.d/+biotypefilter.feature.rst +++ /dev/null @@ -1 +0,0 @@ -OpenTargetsTargetOntologyParser now has a biotype filter parameter. diff --git a/docs/_changelog.d/+ded.feature.rst b/docs/_changelog.d/+ded.feature.rst deleted file mode 100644 index 3ddd47cf..00000000 --- a/docs/_changelog.d/+ded.feature.rst +++ /dev/null @@ -1 +0,0 @@ -DefinedElsewhereInDocumentDisambiguationStrategy has slightly changed, so that it will only return mappings that were found elsewhere in the document, rather than the whole EquivalentIdSet where those ids were contained diff --git a/docs/_changelog.d/+deprecate-replace-dashes.removal.md b/docs/_changelog.d/+deprecate-replace-dashes.removal.md deleted file mode 100644 index 680d722a..00000000 --- a/docs/_changelog.d/+deprecate-replace-dashes.removal.md +++ /dev/null @@ -1,3 +0,0 @@ -Deprecated `GildaUtils.replace_dashes` in favour of `GildaUtils.split_on_dashes_or_space`, as the latter improves efficiency in Kazu. -`GildaUtils.replace_dashes` will continue to work until kazu 1.6, but using it will produce a `DeprecationWarning`. -Please [open a GitHub issue](https://github.com/AstraZeneca/KAZU/issues/new) if you wish this to remain. diff --git a/docs/_changelog.d/+dropmappings.feature.rst b/docs/_changelog.d/+dropmappings.feature.rst deleted file mode 100644 index 4f7f5256..00000000 --- a/docs/_changelog.d/+dropmappings.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added new cleanup action: DropMappingsByParserNameRankAction diff --git a/docs/_changelog.d/+gilda.feature.rst b/docs/_changelog.d/+gilda.feature.rst deleted file mode 100644 index 178d0203..00000000 --- a/docs/_changelog.d/+gilda.feature.rst +++ /dev/null @@ -1 +0,0 @@ -New disambiguation methodology GildaTfIdfDisambiguationStrategy. diff --git a/docs/_changelog.d/+prefnearest.feature.rst b/docs/_changelog.d/+prefnearest.feature.rst deleted file mode 100644 index 9d8eac5c..00000000 --- a/docs/_changelog.d/+prefnearest.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added new disambiguation strategy: PreferNearestEmbeddingToDefaultLabelDisambiguationStrategy. diff --git a/kazu/__init__.py b/kazu/__init__.py index 3e8d9f94..5b601886 100644 --- a/kazu/__init__.py +++ b/kazu/__init__.py @@ -1 +1 @@ -__version__ = "1.4.0" +__version__ = "1.5.0"