From 2b2a5ff727c90930ff9f8b3790b13dd7b60cdb81 Mon Sep 17 00:00:00 2001
From: Martin Larralde <martin.larralde@embl.de>
Date: Sat, 20 Aug 2022 20:04:05 +0200
Subject: [PATCH] Release v0.4.1

---
 CHANGELOG.md          | 11 ++++++++++-
 pyfastani/__init__.py |  2 +-
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index f466d57..c9af33c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,7 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 
 
 ## [Unreleased]
-[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.4.0...HEAD
+[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.4.1...HEAD
+
+
+## [v0.4.1] - 2022-08-20
+[v0.4.1]: https://github.com/althonos/pyrodigal/compare/v0.4.0...v0.4.1
+
+### Changed
+- Use lists instead of arrays to store state of `Minimizers` when pickling.
+- Skip serialization of minimizer index to reduce total state size.
+- Make `Mapper.query_draft` and `Mapper.query_genome` return hits sorted by identity in descending order.
 
 
 ## [v0.4.0] - 2022-08-04
diff --git a/pyfastani/__init__.py b/pyfastani/__init__.py
index 346c975..cf74c07 100644
--- a/pyfastani/__init__.py
+++ b/pyfastani/__init__.py
@@ -12,7 +12,7 @@ from ._fastani import (
 
 __author__ = "Martin Larralde <martin.larralde@embl.de>"
 __license__ = "MIT"
-__version__ = "0.4.0"
+__version__ = "0.4.1"
 
 __doc__ = _fastani.__doc__
 __all__ = [
-- 
GitLab