Skip to content

Commit

Permalink
Update changelog; version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG committed Mar 18, 2024
1 parent 0774661 commit 15b4d18
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ 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.4] - 2024-03-18

### Added

- `Peptidoform`: Support adding and applying global terminal modifications. For now using a
workaround while waiting for official support and an implementation in Pyteomics. See
HUPO-PSI/ProForma#6.

## [0.7.3] - 2024-03-04

### Changed

- `io.xtandem`: Parse double mass modifications as double modification instead of merging and
summing mass shifts into a single modification.
- `io.xtandem`: Avoid float formatting issues when parsing modification mass label.
- `io.xtandem`: Parse all proteins into `protein_list` instead of only the first one.
- `io.tsv`: Log error instead of raising exception when a TSV row cannot be parsed.

## [0.7.2] - 2023-11-29

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions psm_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Common utilities for parsing and handling PSMs, and search engine results."""

__version__ = "0.7.3"
__version__ = "0.7.4"

from warnings import filterwarnings

Expand All @@ -12,6 +12,6 @@
module="psims.mzmlb",
)

from psm_utils.peptidoform import Peptidoform
from psm_utils.psm import PSM
from psm_utils.psm_list import PSMList
from psm_utils.peptidoform import Peptidoform # noqa: E402, F401
from psm_utils.psm import PSM # noqa: E402, F401
from psm_utils.psm_list import PSMList # noqa: E402, F401

0 comments on commit 15b4d18

Please sign in to comment.