From b0e9655385a82ab8bf7fc33f42f6d5ec55fa2312 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Wed, 21 Feb 2024 11:27:03 +0100 Subject: [PATCH] Release v0.10.6 --- CHANGELOG.md | 16 +++++++++++++++- pyhmmer/__init__.py | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27f28ae..a8a38dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyhmmer/compare/v0.10.5...HEAD +[Unreleased]: https://github.com/althonos/pyhmmer/compare/v0.10.6...HEAD + + +## [v0.10.6] - 2024-02-20 +[v0.10.6]: https://github.com/althonos/pyhmmer/compare/v0.10.5...v0.10.6 + +### Added +- `armv7` and `aarch64` to the `PKGBUILD` architectures. + +### Changed +- `SSIReader` and `SSIWriter` constructors now accept path-like objects. +- Skip tests dependending on `importlib.resources.files` when it is not available on the host machine. + +### Fixed +- Memory leak caused by alphabet allocation in `Pipeline._scan_loop_file`. ## [v0.10.5] - 2024-02-16 diff --git a/pyhmmer/__init__.py b/pyhmmer/__init__.py index 796bb47..d6f9294 100644 --- a/pyhmmer/__init__.py +++ b/pyhmmer/__init__.py @@ -32,7 +32,7 @@ __author__ = "Martin Larralde " __license__ = "MIT" -__version__ = "0.10.5" +__version__ = "0.10.6" __all__ = [ "errors", "easel",