From 4be5996e485c7978613aa63e7322a172f1bff5c7 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Wed, 19 Jun 2024 14:41:32 +0200 Subject: [PATCH] Release v0.10.13 --- CHANGELOG.md | 13 ++++++++++++- pyhmmer/__init__.py | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eae99d..b28f5ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyhmmer/compare/v0.10.12...HEAD +[Unreleased]: https://github.com/althonos/pyhmmer/compare/v0.10.13...HEAD + + +## [v0.10.13] - 2024-06-19 +[v0.10.13]: https://github.com/althonos/pyhmmer/compare/v0.10.12...v0.10.13 + +### Changed +- Allow `AlphabetMismatch` error to allow for an unknown *actual* alphabet. +- Make `HMMFile` and `HMMPressedFile` raise `AlphabetMismatch` on files with mixed alphabets. + +### Fixed +- Avoid calling `fclose` with null pointers in `Sequence.write` and `MSA.write`. ## [v0.10.12] - 2024-04-25 diff --git a/pyhmmer/__init__.py b/pyhmmer/__init__.py index 219e181..8e59447 100644 --- a/pyhmmer/__init__.py +++ b/pyhmmer/__init__.py @@ -32,7 +32,7 @@ __author__ = "Martin Larralde " __license__ = "MIT" -__version__ = "0.10.12" +__version__ = "0.10.13" __all__ = [ "errors", "easel",