diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fb54f72..553a7852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] -## [0.4.1] +## [0.4.1] - 2022-04-27 ### Changed @@ -21,10 +21,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Fixed the issue that in `splitFasta`, variant sources are not grouped as they are specified by `--group-source` #439 + +### Added + +- Resources usage including memory, CPU and time is now printed to stdout in the end of all command line programs. + + ### Fixed - Fixed issue that `--additional-split` not recognized properly in `splitFasta`. #443 + --- ## [0.4.0] - 2022-03-17 diff --git a/moPepGen/__init__.py b/moPepGen/__init__.py index f58f1aed..4e0352c9 100644 --- a/moPepGen/__init__.py +++ b/moPepGen/__init__.py @@ -5,7 +5,7 @@ from typing import Iterable, IO -__version__ = '0.4.0' +__version__ = '0.4.1' ## Error messages ERROR_INDEX_IN_INTRON = 'The genomic index seems to be in an intron'