diff --git a/CHANGELOG.md b/CHANGELOG.md index d5ed3c7e..09c44d78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/). +## 1.3.0 - 2023-11-07 + + +### Features + +- CurationProcessor no longer tries to handle curations with INHERIT_FROM_SOURCE_TERM behaviour, as this was causing confusion and conflicts. This is now the responsibility of the caller. +- Updated ontologies for October 2023. + +### Bugfixes + +- Fixed a bug in MemoryEfficientStringMatchingStep where caseinsensitive overlaps caused ontology info to be lost. + + ## 1.2.0 - 2023-10-18 diff --git a/docs/_changelog.d/+inheritedtermbehaviour.feature.rst b/docs/_changelog.d/+inheritedtermbehaviour.feature.rst deleted file mode 100644 index fd9d1361..00000000 --- a/docs/_changelog.d/+inheritedtermbehaviour.feature.rst +++ /dev/null @@ -1 +0,0 @@ -CurationProcessor no longer tries to handle curations with INHERIT_FROM_SOURCE_TERM behaviour, as this was causing confusion and conflicts. This is now the responsibility of the caller. diff --git a/docs/_changelog.d/+ontologiess.feature.rst b/docs/_changelog.d/+ontologiess.feature.rst deleted file mode 100644 index e31737b5..00000000 --- a/docs/_changelog.d/+ontologiess.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Updated ontologies for October 2023. diff --git a/docs/_changelog.d/+stringmatcheroverride.bugfix.rst b/docs/_changelog.d/+stringmatcheroverride.bugfix.rst deleted file mode 100644 index 3b42058d..00000000 --- a/docs/_changelog.d/+stringmatcheroverride.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug in MemoryEfficientStringMatchingStep where caseinsensitive overlaps caused ontology info to be lost. diff --git a/kazu/__init__.py b/kazu/__init__.py index c68196d1..67bc602a 100644 --- a/kazu/__init__.py +++ b/kazu/__init__.py @@ -1 +1 @@ -__version__ = "1.2.0" +__version__ = "1.3.0"