diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b1ad59..06967fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,19 @@ # CHANGELOG +## v1.3.4 (2024-11-20) + +### Unknown + +* Merge branch 'master' of https://github.com/EBI-Metabolights/metabolights-utils ([`a473347`](https://github.com/EBI-Metabolights/metabolights-utils/commit/a47334735281040c351d47eda681e82ce17b9979)) + + ## v1.3.3 (2024-11-20) ### Fixes +* fix: update search pattern to find new lines in cells ([`bcf703a`](https://github.com/EBI-Metabolights/metabolights-utils/commit/bcf703acad1cbc173e56754aa94dad8742535468)) + * fix: ontology source parse errors ([`1d68f25`](https://github.com/EBI-Metabolights/metabolights-utils/commit/1d68f25aa5efc70fda6fa982c3f887b64069b275)) diff --git a/metabolights_utils/__init__.py b/metabolights_utils/__init__.py index 5a36af9..f674a9d 100644 --- a/metabolights_utils/__init__.py +++ b/metabolights_utils/__init__.py @@ -158,7 +158,7 @@ ) from metabolights_utils.utils.search_utils import MetabolightsSearchUtils -__VERSION__ = "1.3.3" +__VERSION__ = "1.3.4" __all__ = [ "Assay", diff --git a/pyproject.toml b/pyproject.toml index 34ac54c..0c46f22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "metabolights-utils" -version = "1.3.3" +version = "1.3.4" description = "MetaboLights open metabolomics data repository utility tools and API." authors = ["MetaboLights Team "] readme = "README.md"