Skip to content
Snippets Groups Projects
Commit 28036437 authored by Martin Larralde's avatar Martin Larralde
Browse files

Release v0.3.0

parent fae4a843
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.2.1...HEAD
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.3.0...HEAD
## [v0.3.0] - 2022-06-17
[v0.3.0]: https://github.com/althonos/pyrodigal/compare/v0.2.1...v0.3.0
### Added
- `pickle` protocol implementation to `Mapper` and `Sketch` via `__getstate__` and `__setstate__`.
- `Minimizers` class to access the minimizers of a `Sketch` or `Mapper` object.
### Changed
- Make `Sketcher` and `Mapper` final.
- Prevent direct instantiation of `Mapper` objects.
- Update `Mapper._query_draft` to recycle memory between fragments.
- Vendor `Boost::math` headers (`v1.79`) to allow compiling without depdendencies.
### Fixed
- Broken compilation of `_fastani` extension module as `universal2` binaries on MacOS.
## [v0.2.1] - 2021-06-20
......
......@@ -3,7 +3,7 @@ from ._fastani import Sketch, Mapper, Hit, MAX_KMER_SIZE
__author__ = "Martin Larralde <martin.larralde@embl.de>"
__license__ = "MIT"
__version__ = "0.2.1"
__version__ = "0.3.0"
__all__ = ["Sketch", "Mapper", "Hit", "MAX_KMER_SIZE"]
__doc__ = _fastani.__doc__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment