Skip to content

Commit 2803643

Browse files
committed
Release v0.3.0
1 parent fae4a84 commit 2803643

2 files changed

Lines changed: 19 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77

88
## [Unreleased]
9-
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.2.1...HEAD
9+
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.3.0...HEAD
10+
11+
12+
## [v0.3.0] - 2022-06-17
13+
[v0.3.0]: https://github.com/althonos/pyrodigal/compare/v0.2.1...v0.3.0
14+
15+
### Added
16+
- `pickle` protocol implementation to `Mapper` and `Sketch` via `__getstate__` and `__setstate__`.
17+
- `Minimizers` class to access the minimizers of a `Sketch` or `Mapper` object.
18+
19+
### Changed
20+
- Make `Sketcher` and `Mapper` final.
21+
- Prevent direct instantiation of `Mapper` objects.
22+
- Update `Mapper._query_draft` to recycle memory between fragments.
23+
- Vendor `Boost::math` headers (`v1.79`) to allow compiling without depdendencies.
24+
25+
### Fixed
26+
- Broken compilation of `_fastani` extension module as `universal2` binaries on MacOS.
1027

1128

1229
## [v0.2.1] - 2021-06-20

pyfastani/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
__author__ = "Martin Larralde <[email protected]>"
55
__license__ = "MIT"
6-
__version__ = "0.2.1"
6+
__version__ = "0.3.0"
77

88
__all__ = ["Sketch", "Mapper", "Hit", "MAX_KMER_SIZE"]
99
__doc__ = _fastani.__doc__

0 commit comments

Comments
 (0)