From 56833d385b7e598c2afbb261c232c18501691aad Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Wed, 16 Aug 2023 11:50:32 +0200 Subject: [PATCH] Release v0.10.0 --- CHANGELOG.md | 17 ++++++++++++++++- pyhmmer/__init__.py | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b73561..66e0e42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyhmmer/compare/v0.9.0...HEAD +[Unreleased]: https://github.com/althonos/pyhmmer/compare/v0.10.0...HEAD + + +## [v0.10.0] - 2023-08-16 +[v0.10.0]: https://github.com/althonos/pyhmmer/compare/v0.9.0...v0.10.0 + +### Added +- Support for compiling wheels for Aarch64 and NEON-enabled Arm platforms. + +### Changed +- Updated HMMER to [`v3.4`](https://github.com/EddyRivasLab/hmmer/releases/tag/hmmer-3.4). +- Updated Easel to [`v0.49`](https://github.com/EddyRivasLab/easel/releases/tag/easel-0.49). +- Use [`cibuildwheel`](https://github.com/pypa/cibuildwheel) to build wheel distributions. + +### Fixed +- Patch missing `PyInterpreterState_GetID` preventing the package from working on PyPy 3.9. ## [v0.9.0] - 2023-08-03 diff --git a/pyhmmer/__init__.py b/pyhmmer/__init__.py index 27b588d..ff7cf98 100644 --- a/pyhmmer/__init__.py +++ b/pyhmmer/__init__.py @@ -32,7 +32,7 @@ __author__ = "Martin Larralde " __license__ = "MIT" -__version__ = "0.9.0" +__version__ = "0.10.0" __all__ = [ "errors", "easel",