Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jun 15, 2021
1 parent 5dea647 commit 1430896
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.1.1...HEAD
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.1.2...HEAD


## [v0.1.2] - 2021-06-15
[v0.1.2]: https://github.com/althonos/pyrodigal/compare/v0.1.1...v0.1.2

### Changed
- Querying functions now release GIL to allow efficient parallel querying.


## [v0.1.1] - 2021-06-13
[v0.1.1]: https://github.com/althonos/pyrodigal/compare/v0.1.0...v0.1.1
Expand Down
2 changes: 1 addition & 1 deletion pyfastani/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__author__ = "Martin Larralde <[email protected]>"
__license__ = "MIT"
__version__ = "0.1.1"
__version__ = "0.1.2"

__all__ = ["Mapper", "Hit"]
__doc__ = _fastani.__doc__
5 changes: 0 additions & 5 deletions pyfastani/_fastani.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -360,11 +360,6 @@ cdef class Mapper:
Adapted from the ``skch::Map::mapQuery`` method in ``computeMap.hpp``.
Todo:
Doctor the memory management so that it's not needed to
reallocate a new ``Map_t`` and a new result vector at each
query.
"""
assert self._sk != nullptr

Expand Down

0 comments on commit 1430896

Please sign in to comment.