From d253a582045e86f3bb61f976c33fe02a68787f6d Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Fri, 5 Mar 2021 15:06:50 +0100 Subject: [PATCH] Release v0.4.6 --- CHANGELOG.md | 12 +++++++++++- pyrodigal/__init__.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef4256f..8bb9a25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.4.5...HEAD +[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.4.6...HEAD + + +## [v0.4.6] - 2021-03-05 +[v0.4.6]: https://github.com/althonos/pyrodigal/compare/v0.4.5...v0.4.6 + +### Changed +- Tests are now in the `pyrodigal.tests` module and can be run after a site install. + +### Fixed +- `Pyrodigal.find_genes` stalling on sequences shorter than 3 nucleotides. ## [v0.4.5] - 2021-03-03 diff --git a/pyrodigal/__init__.py b/pyrodigal/__init__.py index 95cef24..d0bd57e 100644 --- a/pyrodigal/__init__.py +++ b/pyrodigal/__init__.py @@ -8,6 +8,6 @@ __author__ = "Martin Larralde " __license__ = "GPLv3" -__version__ = "0.4.5" +__version__ = "0.4.6" _Sequence.register(Genes)