From 4a642c6aed662d2a4ccfbb54f8f5ccc131f715a0 Mon Sep 17 00:00:00 2001
From: Martin Larralde <martin.larralde@embl.de>
Date: Thu, 31 Aug 2023 16:27:15 +0200
Subject: [PATCH] Release v0.5.1

---
 CHANGELOG.md                         | 11 ++++++++++-
 lightmotif-bench/Cargo.toml          |  2 +-
 lightmotif-py/Cargo.toml             |  4 ++--
 lightmotif-py/lightmotif/__init__.py |  2 +-
 lightmotif-tfmpvalue/Cargo.toml      |  4 ++--
 lightmotif-transfac/Cargo.toml       |  4 ++--
 lightmotif/Cargo.toml                |  2 +-
 7 files changed, 19 insertions(+), 10 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 99f4eb7..c0d0d82 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.5.0...HEAD
+[Unreleased]: https://github.com/althonos/lightmotif/compare/v0.5.1...HEAD
+
+
+## [v0.5.1] - 2023-08-31
+[v0.5.1]: https://github.com/althonos/lightmotif/compare/v0.5.0...v0.5.1
+
+### Fixed
+
+#### `lightmotif`
+- Compilation for Arm NEON platforms.
 
 
 ## [v0.5.0] - 2023-08-31
diff --git a/lightmotif-bench/Cargo.toml b/lightmotif-bench/Cargo.toml
index 241b50d..1009f8c 100644
--- a/lightmotif-bench/Cargo.toml
+++ b/lightmotif-bench/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "lightmotif-bench"
-version = "0.5.0"
+version = "0.5.1"
 edition = "2021"
 publish = false
 
diff --git a/lightmotif-py/Cargo.toml b/lightmotif-py/Cargo.toml
index 863286e..cf5981f 100644
--- a/lightmotif-py/Cargo.toml
+++ b/lightmotif-py/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "lightmotif-py"
-version = "0.5.0"
+version = "0.5.1"
 authors = ["Martin Larralde <martin.larralde@embl.de>"]
 edition = "2021"
 license = "MIT"
@@ -17,7 +17,7 @@ path = "lightmotif/lib.rs"
 
 [dependencies.lightmotif]
 path = "../lightmotif"
-version = "0.5.0"
+version = "0.5.1"
 [dependencies]
 pyo3 = "0.18.3"
 generic-array = "0.14"
diff --git a/lightmotif-py/lightmotif/__init__.py b/lightmotif-py/lightmotif/__init__.py
index 00b8433..cfd14e9 100644
--- a/lightmotif-py/lightmotif/__init__.py
+++ b/lightmotif-py/lightmotif/__init__.py
@@ -1,4 +1,4 @@
-__version__ = "0.5.0"
+__version__ = "0.5.1"
 
 from . import lib
 from .lib import (
diff --git a/lightmotif-tfmpvalue/Cargo.toml b/lightmotif-tfmpvalue/Cargo.toml
index 03dd293..5a08645 100644
--- a/lightmotif-tfmpvalue/Cargo.toml
+++ b/lightmotif-tfmpvalue/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "lightmotif-tfmpvalue"
-version = "0.5.0"
+version = "0.5.1"
 authors = ["Martin Larralde <martin.larralde@embl.de>"]
 edition = "2021"
 license = "GPL-3.0"
@@ -13,7 +13,7 @@ keywords = ["bioinformatics", "motif", "pssm", "pvalue"]
 
 [dependencies.lightmotif]
 path = "../lightmotif"
-version = "0.5.0"
+version = "0.5.1"
 [dependencies.fnv]
 version = "1.0"
 optional = true
diff --git a/lightmotif-transfac/Cargo.toml b/lightmotif-transfac/Cargo.toml
index f3c1504..323aa49 100644
--- a/lightmotif-transfac/Cargo.toml
+++ b/lightmotif-transfac/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "lightmotif-transfac"
-version = "0.5.0"
+version = "0.5.1"
 authors = ["Martin Larralde <martin.larralde@embl.de>"]
 edition = "2021"
 license = "MIT"
@@ -13,7 +13,7 @@ keywords = ["bioinformatics", "motif", "parser", "transfac"]
 
 [dependencies.lightmotif]
 path = "../lightmotif"
-version = "0.5.0"
+version = "0.5.1"
 [dependencies]
 nom = "7"
 memchr = "2"
diff --git a/lightmotif/Cargo.toml b/lightmotif/Cargo.toml
index 6be6a63..a8110d6 100644
--- a/lightmotif/Cargo.toml
+++ b/lightmotif/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "lightmotif"
-version = "0.5.0"
+version = "0.5.1"
 authors = ["Martin Larralde <martin.larralde@embl.de>"]
 edition = "2021"
 license = "MIT"
-- 
GitLab