diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ce49baf60f1d7e999be02f90a7a8478f6b6d333..1d0585cbbf9a85bbb4d306b1cade2495e58cb91b 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/lightmotif/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/althonos/lightmotif/compare/v0.7.1...HEAD + + +## [v0.7.1] - 2024-06-14 +[v0.7.1]: https://github.com/althonos/lightmotif/compare/v0.7.0...v0.7.1 + +### Fixed + +#### `lightmotif` +- Resizing of `StripedScores` output in NEON implementation of `Score`. ## [v0.7.0] - 2024-06-14 diff --git a/lightmotif-bench/Cargo.toml b/lightmotif-bench/Cargo.toml index 4046f07cc047053ca8b87544d2fcb0a8f73374de..7d60f8db22655ae5d70dadc1b3cb6035e975fdb8 100644 --- a/lightmotif-bench/Cargo.toml +++ b/lightmotif-bench/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightmotif-bench" -version = "0.7.0" +version = "0.7.1" edition = "2021" publish = false diff --git a/lightmotif-io/Cargo.toml b/lightmotif-io/Cargo.toml index 8133d6965546ee01d173b57b0f35badd5f15b686..6fa29b9184a36f11fad0ce8103d4dae7578c8380 100644 --- a/lightmotif-io/Cargo.toml +++ b/lightmotif-io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightmotif-io" -version = "0.7.0" +version = "0.7.1" authors = ["Martin Larralde <martin.larralde@embl.de>"] edition = "2021" license = "MIT" @@ -19,4 +19,4 @@ memchr = "2" [dependencies.lightmotif] path = "../lightmotif" -version = "0.7.0" +version = "0.7.1" diff --git a/lightmotif-py/Cargo.toml b/lightmotif-py/Cargo.toml index d217b99bff2456b503515b7ea76e22bdacb8fdb1..e374ab12aae3535abb98bba4dddb11e540d64350 100644 --- a/lightmotif-py/Cargo.toml +++ b/lightmotif-py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightmotif-py" -version = "0.7.0" +version = "0.7.1" authors = ["Martin Larralde <martin.larralde@embl.de>"] edition = "2021" license = "MIT OR GPL-3.0-or-later" @@ -17,11 +17,11 @@ path = "lightmotif/lib.rs" [dependencies.lightmotif] path = "../lightmotif" -version = "0.7.0" +version = "0.7.1" [dependencies.lightmotif-tfmpvalue] optional = true path = "../lightmotif-tfmpvalue" -version = "0.7.0" +version = "0.7.1" [dependencies] pyo3 = "0.18.3" generic-array = "1.0.0" diff --git a/lightmotif-py/lightmotif/__init__.py b/lightmotif-py/lightmotif/__init__.py index dd035e30d8c2f480f82e47c90534c206e2617d8a..4f3baee349864408cb180cf66378611ad802cce4 100644 --- a/lightmotif-py/lightmotif/__init__.py +++ b/lightmotif-py/lightmotif/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.7.0" +__version__ = "0.7.1" from . import lib from .lib import ( diff --git a/lightmotif-tfmpvalue/Cargo.toml b/lightmotif-tfmpvalue/Cargo.toml index b9392742b11df067057e6703273e7afc6507f81a..9458e774ade9ca3c322ed906ea44c9837cd37885 100644 --- a/lightmotif-tfmpvalue/Cargo.toml +++ b/lightmotif-tfmpvalue/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "lightmotif-tfmpvalue" -version = "0.7.0" +version = "0.7.1" authors = ["Martin Larralde <martin.larralde@embl.de>"] edition = "2021" -license = "GPL-3.0" +license = "GPL-3.0-or-later" description = "Rust reimplementation of TFMPvalue for the lightmotif crate." repository = "https://github.com/althonos/lightmotif" homepage = "https://github.com/althonos/lightmotif" @@ -13,5 +13,5 @@ keywords = ["bioinformatics", "motif", "pssm", "pvalue"] [dependencies.lightmotif] path = "../lightmotif" -version = "0.7.0" +version = "0.7.1" diff --git a/lightmotif/Cargo.toml b/lightmotif/Cargo.toml index dc4ae0597fd01868b5b89ad5807b73852b9e5bdf..d40be835c4d7f2ebe471940efc1170cbb54b6bb8 100644 --- a/lightmotif/Cargo.toml +++ b/lightmotif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightmotif" -version = "0.7.0" +version = "0.7.1" authors = ["Martin Larralde <martin.larralde@embl.de>"] edition = "2021" license = "MIT"