From eef73a18ef034b52144518af3759ca9a8a8c6086 Mon Sep 17 00:00:00 2001 From: Martin Larralde <martin.larralde@embl.de> Date: Tue, 3 Sep 2024 00:24:11 +0200 Subject: [PATCH] Release v0.9.1 --- CHANGELOG.md | 17 ++++++++++++++++- lightmotif-bench/Cargo.toml | 2 +- lightmotif-io/Cargo.toml | 4 ++-- lightmotif-py/Cargo.toml | 8 ++++---- lightmotif-py/docs/_static/json/switcher.json | 4 ++-- lightmotif-py/lightmotif/__init__.py | 2 +- lightmotif-tfmpvalue/Cargo.toml | 4 ++-- lightmotif/Cargo.toml | 2 +- 8 files changed, 29 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47d9e5b..a68af08 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/lightmotif/compare/v0.9.0...HEAD +[Unreleased]: https://github.com/althonos/lightmotif/compare/v0.9.1...HEAD + + +## [v0.9.1] - 2024-09-03 +[v0.9.1]: https://github.com/althonos/lightmotif/compare/v0.9.0...v0.9.1 + +### Added + +#### `lightmotif-py` +- Arch User Repository package `python-lightmotif` to distribute the Python package on ArchLinux. + +### Fixed + +#### `lightmotif-py` +- Fix issues with source distribution missing required files for compilation. +- Remove unused test data to reduce size of source distribution. ## [v0.9.0] - 2024-09-02 diff --git a/lightmotif-bench/Cargo.toml b/lightmotif-bench/Cargo.toml index ec193ec..6229843 100644 --- a/lightmotif-bench/Cargo.toml +++ b/lightmotif-bench/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightmotif-bench" -version = "0.9.0" +version = "0.9.1" edition = "2021" publish = false diff --git a/lightmotif-io/Cargo.toml b/lightmotif-io/Cargo.toml index 1cc9be7..0d55f5c 100644 --- a/lightmotif-io/Cargo.toml +++ b/lightmotif-io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightmotif-io" -version = "0.9.0" +version = "0.9.1" authors = ["Martin Larralde <martin.larralde@embl.de>"] edition = "2021" license = "MIT" @@ -20,4 +20,4 @@ generic-array = "1.0" [dependencies.lightmotif] path = "../lightmotif" -version = "0.9.0" +version = "0.9.1" diff --git a/lightmotif-py/Cargo.toml b/lightmotif-py/Cargo.toml index 74f3115..81ae381 100644 --- a/lightmotif-py/Cargo.toml +++ b/lightmotif-py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightmotif-py" -version = "0.9.0" +version = "0.9.1" authors = ["Martin Larralde <martin.larralde@embl.de>"] edition = "2021" license = "MIT OR GPL-3.0-or-later" @@ -18,14 +18,14 @@ doctest = false [dependencies.lightmotif] path = "../lightmotif" -version = "0.9.0" +version = "0.9.1" [dependencies.lightmotif-io] path = "../lightmotif-io" -version = "0.9.0" +version = "0.9.1" [dependencies.lightmotif-tfmpvalue] optional = true path = "../lightmotif-tfmpvalue" -version = "0.9.0" +version = "0.9.1" [dependencies] pyo3 = "0.22.0" generic-array = "1.0.0" diff --git a/lightmotif-py/docs/_static/json/switcher.json b/lightmotif-py/docs/_static/json/switcher.json index 163671f..8ebc3b5 100644 --- a/lightmotif-py/docs/_static/json/switcher.json +++ b/lightmotif-py/docs/_static/json/switcher.json @@ -1,8 +1,8 @@ [ { "name": "v0.9 (latest)", - "version": "0.9.0", - "url": "https://lightmotif.readthedocs.io/en/v0.9.0/" + "version": "0.9.1", + "url": "https://lightmotif.readthedocs.io/en/v0.9.1/" }, { "name": "v0.8", diff --git a/lightmotif-py/lightmotif/__init__.py b/lightmotif-py/lightmotif/__init__.py index 180cb51..ffe2fcb 100644 --- a/lightmotif-py/lightmotif/__init__.py +++ b/lightmotif-py/lightmotif/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.9.0-post2" +__version__ = "0.9.1" from . import lib from .lib import ( diff --git a/lightmotif-tfmpvalue/Cargo.toml b/lightmotif-tfmpvalue/Cargo.toml index 7e3c261..fc4847e 100644 --- a/lightmotif-tfmpvalue/Cargo.toml +++ b/lightmotif-tfmpvalue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightmotif-tfmpvalue" -version = "0.9.0" +version = "0.9.1" authors = ["Martin Larralde <martin.larralde@embl.de>"] edition = "2021" license = "GPL-3.0-or-later" @@ -13,5 +13,5 @@ keywords = ["bioinformatics", "motif", "pssm", "pvalue"] [dependencies.lightmotif] path = "../lightmotif" -version = "0.9.0" +version = "0.9.1" diff --git a/lightmotif/Cargo.toml b/lightmotif/Cargo.toml index 4927ea1..099ea6d 100644 --- a/lightmotif/Cargo.toml +++ b/lightmotif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightmotif" -version = "0.9.0" +version = "0.9.1" authors = ["Martin Larralde <martin.larralde@embl.de>"] edition = "2021" license = "MIT" -- GitLab