From 367bb3604f5e33a460d1656d46ffeb8c815c5f4d Mon Sep 17 00:00:00 2001 From: RalfG Date: Mon, 30 Oct 2023 18:10:45 -0400 Subject: [PATCH] Version bump to 0.7.1 --- CHANGELOG.md | 12 ++++++++++++ psm_utils/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99ca1eb..eff4664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. 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). +## [0.7.1] - 2023-10-30 + +### Added +- Tests: Added tests for _format_number_as_string function +- Tests: Added more test cases for `peptidoform.rename_modifications` for mass modifications +- `io.xtandem`: To parse `run` value, fall back to PSM file name if run name cannot be parsed from `label` field + +### Fixed +- `peptidoform.rename_modifications`: Fixed mapping of negative mass modifications +- `io.xtandem`: Fixed regular expression to parse `run` value fom XML `label` field +- `io.idxml`: Fix handling multiple types in `rescoring_features` when writing (fixes #60) + ## [0.7.0] - 2023-10-25 ### Added diff --git a/psm_utils/__init__.py b/psm_utils/__init__.py index 5fc0aef..3e0e28b 100644 --- a/psm_utils/__init__.py +++ b/psm_utils/__init__.py @@ -1,6 +1,6 @@ """Common utilities for parsing and handling PSMs, and search engine results.""" -__version__ = "0.7.0" +__version__ = "0.7.1" from warnings import filterwarnings