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