diff --git a/CHANGELOG.md b/CHANGELOG.md index 819482c6..8585810d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +## [1.4.2] - 2024-06-23 + +- Fixed `splitFasta` that NovelORF peptides coding transcripts not recognized correctly. + ## [1.4.1] - 2024-05-26 - Fixed `VariantPepidePool` that old versions of `SeqUtils.molecular_weight` don't handle `SeqRecord` objects. #874 diff --git a/moPepGen/__init__.py b/moPepGen/__init__.py index 053f60d1..9c99479d 100644 --- a/moPepGen/__init__.py +++ b/moPepGen/__init__.py @@ -8,7 +8,7 @@ from . import constant -__version__ = '1.4.1' +__version__ = '1.4.2' ## Error messages ERROR_INDEX_IN_INTRON = 'The genomic index seems to be in an intron'