From 53c2a8fb9fce3331870667dd9fabc752b8b57aa0 Mon Sep 17 00:00:00 2001 From: Peter Abeles Date: Sat, 23 Sep 2023 20:45:54 -0700 Subject: [PATCH] Version 0.43.1 --- README.md | 2 +- build.gradle | 2 +- change.txt | 8 ++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d06fca76..d16fc3f1 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ EJML is in Maven central repository and can easily be added to Gradle, Maven, an ``` org.ejml ejml-all -0.43 +0.43.1 ``` This will add the entire library. Alternatively, you can include the required modules individually: diff --git a/build.gradle b/build.gradle index 235838c1..71717466 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ allprojects { apply plugin: 'com.peterabeles.gversion' group = 'org.ejml' - version = '0.44-SNAPSHOT' + version = '0.43.1' project.ext.commons_io_version = '2.11.0' project.ext.lombok_version = '1.18.24' diff --git a/change.txt b/change.txt index 62c36a1d..fadb002a 100644 --- a/change.txt +++ b/change.txt @@ -2,6 +2,14 @@ Change log for EJML Date format: year/month/day +----- Version 0.43.1 +2023/Sep/23 + +- Fixed low level bug in ConcurrentyOps where it was not clearing the workspace in all situations, +resulting in really weird bugs in downstream customers of EJML +- Javadoc clean up, Thanks jozef Kutas +-Added DMatrixRMaj.get2DData() which returns the matrix encoded as a 2D array + ----- Version 0.43 2023/04/15