From 0798c1cb6e3e1e3ae756a6a1bf2e37494d3aa481 Mon Sep 17 00:00:00 2001 From: hechth Date: Fri, 22 Jul 2022 10:20:24 -0500 Subject: [PATCH 1/2] bumped version --- CHANGELOG.md | 8 ++++++++ RIAssigner/__version__.py | 2 +- conda/meta.yaml | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f9e97f..b700d63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - removed test cases which include data that has `None` retention times. [#90](https://github.com/RECETOX/RIAssigner/pull/90) +## [0.3.3] - 2022-07-22 +### Added +### Changed +- replaced asserts with `ValueError` as asserts can be disabled. [#91](https://github.com/RECETOX/RIAssigner/pull/91) +- updated matchms dependency to `>= 0.14.0`. [#90](https://github.com/RECETOX/RIAssigner/pull/90) +### Removed +- removed test cases which include data that has `None` retention times. [#90](https://github.com/RECETOX/RIAssigner/pull/90) + ## [0.3.2] - 2022-02-11 ### Added - data/Data.py: Added `update_possible_rt_keys()` and `update_possible_ri_keys()` methods for `Data` class. diff --git a/RIAssigner/__version__.py b/RIAssigner/__version__.py index 5ddac5b..6198833 100644 --- a/RIAssigner/__version__.py +++ b/RIAssigner/__version__.py @@ -1 +1 @@ -__version__ = '0.3.2' +__version__ = '0.3.3' diff --git a/conda/meta.yaml b/conda/meta.yaml index 90a9bb7..08bd280 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -27,13 +27,13 @@ requirements: - python - setuptools host: - - python >=3.7,<3.9 + - python >=3.7 - pip - pytest-runner - setuptools run: - numpy - - matchms >=0.9.1 + - matchms >=0.14.0 - pint >=0.17 - pip - pandas From b53a01d82b3d1ed3db529fad09556011ff1507d1 Mon Sep 17 00:00:00 2001 From: hechth Date: Fri, 22 Jul 2022 10:21:01 -0500 Subject: [PATCH 2/2] removed duplicated content --- CHANGELOG.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b700d63..aea09b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [dev] - unreleased ### Added ### Changed -- replaced asserts with `ValueError` as asserts can be disabled. [#91](https://github.com/RECETOX/RIAssigner/pull/91) -- updated matchms dependency to `>= 0.14.0`. [#90](https://github.com/RECETOX/RIAssigner/pull/90) ### Removed -- removed test cases which include data that has `None` retention times. [#90](https://github.com/RECETOX/RIAssigner/pull/90) ## [0.3.3] - 2022-07-22 ### Added