From 86cb95f57664e5011ac1e5535cfd14fda866d744 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Wed, 6 Nov 2024 16:01:28 +0100 Subject: [PATCH] Release v0.6.0 --- CHANGELOG.md | 12 +++++++++++- orthoani/__init__.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b068de6..29c0282 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] -[Unreleased]: https://github.com/althonos/orthoani/compare/v0.5.0...HEAD +[Unreleased]: https://github.com/althonos/orthoani/compare/v0.6.0...HEAD + +## [v0.6.0] - 2024-11-06 +[v0.6.0]: https://github.com/althonos/orthoani/compare/v0.5.0...v0.6.0 +### Changed +- Make `better-exceptions` an optional dependency. +### Fixed +- Discrepancy with OrthoANI values for high similarity genomes ([#2](https://github.com/althonos/orthoani/issues)). +- Remaining files of temporary BLAST databases not being removed. +### Removed +- Support for Python 3.5. ## [v0.5.0] - 2021-05-28 [v0.5.0]: https://github.com/althonos/orthoani/compare/v0.4.0...v0.5.0 diff --git a/orthoani/__init__.py b/orthoani/__init__.py index e40d273..5d907e7 100644 --- a/orthoani/__init__.py +++ b/orthoani/__init__.py @@ -22,7 +22,7 @@ __all__ = ["orthoani", "orthoani_pairwise"] __author__ = "Martin Larralde " __license__ = "MIT" -__version__ = "0.5.0" +__version__ = "0.6.0" class BlastRow(typing.NamedTuple):