From 0f388a0f20122fa728f7e3c0726504976996cb86 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Sun, 20 Jun 2021 02:19:18 +0200 Subject: [PATCH] Release v0.2.1 --- CHANGELOG.md | 11 +++++++++-- pyfastani/__init__.py | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0a64d6..0ec529f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.2.1...HEAD + + +## [v0.2.1] - 2021-06-20 +[v0.2.1]: https://github.com/althonos/pyrodigal/compare/v0.2.0...v0.2.1 + +### Fixed +- Missing header files in the `tar.gz` distribution, preventing compilation of the wheel from source. ## [v0.2.0] - 2021-06-20 -[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.1.2...v0.2.0 +[v0.2.0]: https://github.com/althonos/pyrodigal/compare/v0.1.2...v0.2.0 ### Added - `Sketch.clear` method to remove all sequences currently in a `Sketch` and reset the list of minimizers. diff --git a/pyfastani/__init__.py b/pyfastani/__init__.py index ec5ed82..e6c2a49 100644 --- a/pyfastani/__init__.py +++ b/pyfastani/__init__.py @@ -3,7 +3,7 @@ __author__ = "Martin Larralde " __license__ = "MIT" -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = ["Sketch", "Mapper", "Hit", "MAX_KMER_SIZE"] __doc__ = _fastani.__doc__