From 0cff6f76e9cb026faefa64a12dcf30b9316ad756 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Fri, 9 Apr 2021 03:51:14 +0200 Subject: [PATCH] Release v0.4.7 --- CHANGELOG.md | 10 +++++++++- pyrodigal/__init__.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bb9a25..469a4e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.4.6...HEAD +[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.4.7...HEAD + + +## [v0.4.7] - 2021-04-09 +[v0.4.7]: https://github.com/althonos/pyrodigal/compare/v0.4.6...v0.4.7 + +### Fixed +- `Pyrodigal.find_genes` segfaulting on some sequences when called in `single` mode ([#2](https://github.com/althonos/pyrodigal/issues/2)). +- `MemoryError` potentially not being properly raised on allocation issues for sequence bitmaps. ## [v0.4.6] - 2021-03-05 diff --git a/pyrodigal/__init__.py b/pyrodigal/__init__.py index d0bd57e..0040115 100644 --- a/pyrodigal/__init__.py +++ b/pyrodigal/__init__.py @@ -8,6 +8,6 @@ __author__ = "Martin Larralde " __license__ = "GPLv3" -__version__ = "0.4.6" +__version__ = "0.4.7" _Sequence.register(Genes)