From 1aeb24c8887cf522f26fb7b50302bd882ce08ee6 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Wed, 3 Mar 2021 17:00:59 +0100 Subject: [PATCH] Release v0.4.4 --- CHANGELOG.md | 17 ++++++++++++++--- pyrodigal/__init__.py | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7be62b..0fd3bc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.4.3...HEAD +[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.4.4...HEAD + + +## [v0.4.4] - 2021-03-03 +[v0.4.4]: https://github.com/althonos/pyrodigal/compare/v0.4.3...v0.4.4 + +### Fixed +- Mark package as OS-independent. + +### Added +- Support for Python 3.5. +- Compilation of PyPy wheels on OSX. ## [v0.4.3] - 2021-03-01 [v0.4.3]: https://github.com/althonos/pyrodigal/compare/v0.4.2...v0.4.3 -### Fixed +### Fixed - Buffer overflow when running in `meta` mode on a sequence too small to have any dynamic programming nodes. @@ -20,7 +31,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [v0.4.2]: https://github.com/althonos/pyrodigal/compare/v0.4.1...v0.4.2 ### Fixed -- Buffer overflow coming from the node array, caused by an incorrect +- Buffer overflow coming from the node array, caused by an incorrect estimation of the node count from the sequence length. diff --git a/pyrodigal/__init__.py b/pyrodigal/__init__.py index 32be590..7fbb7ab 100644 --- a/pyrodigal/__init__.py +++ b/pyrodigal/__init__.py @@ -8,6 +8,6 @@ __author__ = "Martin Larralde " __license__ = "GPLv3" -__version__ = "0.4.3" +__version__ = "0.4.4" _Sequence.register(Genes)