From 6aa65977ee3311d1fdaa635f3e3027178222c668 Mon Sep 17 00:00:00 2001 From: Helge Hecht Date: Wed, 24 Apr 2024 16:41:14 +0200 Subject: [PATCH] bump version and update changelog --- CHANGELOG.md | 7 ++++++- RIAssigner/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 036186b..c1f4e5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [dev] - unreleased + +## [0.4.1] - 2024-04-24 +### Changed +- updated _assign_ri_value function to delete the RI key if the value is not greater than 0 [#122](https://github.com/RECETOX/RIAssigner/pull/122) + +## [0.4.0] - 2024-02-13 ### Added - reading RI values from the comments field [#112](https://github.com/RECETOX/RIAssigner/pull/109) - column name sanitizing and mapping using matchms [#118](https://github.com/RECETOX/RIAssigner/pull/118) @@ -13,7 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - updated dependencies to newest versions [#116](https://github.com/RECETOX/RIAssigner/pull/116) - changed build system to use poetry [#109](https://github.com/RECETOX/RIAssigner/pull/109) -- updated _assign_ri_value function to delete the RI key if the value is not greater than 0 [#122](https://github.com/RECETOX/RIAssigner/pull/122) ### Removed ## [0.3.4] - 2023-02-21 diff --git a/RIAssigner/__version__.py b/RIAssigner/__version__.py index abeeedb..f0ede3d 100644 --- a/RIAssigner/__version__.py +++ b/RIAssigner/__version__.py @@ -1 +1 @@ -__version__ = '0.4.0' +__version__ = '0.4.1' diff --git a/pyproject.toml b/pyproject.toml index e3db270..01c7f73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "RIAssigner" -version = "0.4.0" +version = "0.4.1" description = "Python library for retention index calculation." authors = ["Helge Hecht ", "Maksym Skoryk "]