From 14308966f1fa9461def89edb536365f0236be552 Mon Sep 17 00:00:00 2001 From: Martin Larralde <martin.larralde@embl.de> Date: Tue, 15 Jun 2021 03:33:23 +0200 Subject: [PATCH] Release v0.1.2 --- CHANGELOG.md | 10 +++++++++- pyfastani/__init__.py | 2 +- pyfastani/_fastani.pyx | 5 ----- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3422790..3905739 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyfastani/__init__.py b/pyfastani/__init__.py index a8b0ec8..cb6261b 100644 --- a/pyfastani/__init__.py +++ b/pyfastani/__init__.py @@ -3,7 +3,7 @@ from ._fastani import Mapper, Hit __author__ = "Martin Larralde <martin.larralde@embl.de>" __license__ = "MIT" -__version__ = "0.1.1" +__version__ = "0.1.2" __all__ = ["Mapper", "Hit"] __doc__ = _fastani.__doc__ diff --git a/pyfastani/_fastani.pyx b/pyfastani/_fastani.pyx index e456f0d..01d2922 100644 --- a/pyfastani/_fastani.pyx +++ b/pyfastani/_fastani.pyx @@ -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 -- GitLab