diff --git a/CHANGES.md b/CHANGES.md index 06973bd2..5d770661 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Strobealign Changelog -## development version +## v0.14.0 (2024-10-03) * #401: The default number of threads is now 1 instead of 3. * #409: Ensure reference names are unique and conform to the SAM @@ -13,6 +13,10 @@ a separate thread. We tested up to 128 cores, and strobealign was still able to use all cores. Contributed by @telmin. +* #447: Switched to a new way for hashing randstrobes in preparation for the + introduction of multi-context seeds. + Pre-generated index files (`.sti` files) therefore need to be re-generated. + (Strobealign will complain if you try to use an outdated index file.) ## v0.13.0 (2024-03-04) diff --git a/CMakeLists.txt b/CMakeLists.txt index bc9ac9c9..e9b97a6c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(strobealign VERSION 0.13.0) +project(strobealign VERSION 0.14.0) include(FetchContent) include(ExternalProject) diff --git a/setup.py b/setup.py index 12d8eaef..fecc45cb 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ name="strobealign", description="Python bindings for strobealign", license="MIT", - version="0.13.0", + version="0.14.0", packages=["strobealign"], package_dir={"": "src/python"}, cmake_install_dir="src/python",