From 0fa2f32c038b55cfb9f1280c88703dfe78c9abc4 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Wed, 24 Jan 2024 20:40:26 +0100 Subject: [PATCH] Release v3.3.0 --- CHANGELOG.md | 17 ++++++++++++++++- pyrodigal/_version.py | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18f8490..3aa96be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyrodigal/compare/v3.2.2...HEAD +[Unreleased]: https://github.com/althonos/pyrodigal/compare/v3.3.0...HEAD + + +## [v3.3.0] - 2024-01-24 +[v3.3.0]: https://github.com/althonos/pyrodigal/compare/v3.2.2...v3.3.0 + +# Added +- CLI option to disable translation of stop codons ([#51](https://github.com/althonos/pyrodigal/pull/51), by [@zclaas](https://github.com/zclaas)). + +# Changed +- `Scorer` internal API to separate connection scoring and overlap disentangling. + +# Fixed +- Bug with computation of minimum node in connection scoring loop ([hyattpd/Prodigal#108](https://github.com/hyattpd/Prodigal/pull/108)). +- Out-of-bounds sequence access in `_shine_dalgarno_exact` and `_shine_dalgarno_mm` methods of `Sequence`. +- Memory leak in `Nodes.__setstate__` caused by incorrect reallocation. ## [v3.2.2] - 2024-01-21 diff --git a/pyrodigal/_version.py b/pyrodigal/_version.py index 1e3bed4..88c513e 100644 --- a/pyrodigal/_version.py +++ b/pyrodigal/_version.py @@ -1 +1 @@ -__version__ = "3.2.2" +__version__ = "3.3.0"