diff --git a/CHANGELOG.md b/CHANGELOG.md
index c92cb3106..d579def82 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,6 @@
+### November 2, 2022 version 1.5.8
+ * Add `static long Pointer.getDirectBufferAddress(Buffer)` method for convenience ([pull #629](https://github.com/bytedeco/javacpp/pull/629))
* Fix `UniquePtrAdapter` incorrectly deallocating pointers on callbacks ([issue #613](https://github.com/bytedeco/javacpp/issues/613))
* Fix `Generator` incorrectly casting `@ByVal` or `@ByRef` annotated `FunctionPointer` arguments ([issue bytedeco/javacpp-presets#1244](https://github.com/bytedeco/javacpp-presets/issues/1244))
* Fix `Generator` compiler errors for `FunctionPointer` with `@UniquePtr` arguments ([issue #613](https://github.com/bytedeco/javacpp/issues/613))
diff --git a/README.md b/README.md
index 8652d555a..89f3c26d9 100644
--- a/README.md
+++ b/README.md
@@ -26,27 +26,27 @@ We can also have everything downloaded and installed automatically with:
org.bytedeco
javacpp
- 1.5.7
+ 1.5.8
```
* Gradle (inside the `build.gradle` file)
```groovy
dependencies {
- implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.7'
+ implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.8'
}
```
* Leiningen (inside the `project.clj` file)
```clojure
:dependencies [
- [org.bytedeco/javacpp "1.5.7"]
+ [org.bytedeco/javacpp "1.5.8"]
]
```
* sbt (inside the `build.sbt` file)
```scala
- libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.7"
+ libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.8"
```
Another option available to Gradle users is [Gradle JavaCPP](https://github.com/bytedeco/gradle-javacpp), and similarly for Scala users there is [SBT-JavaCPP](https://github.com/bytedeco/sbt-javacpp).
diff --git a/platform/pom.xml b/platform/pom.xml
index d69bf6227..f10dcb493 100644
--- a/platform/pom.xml
+++ b/platform/pom.xml
@@ -4,7 +4,7 @@
4.0.0
org.bytedeco
javacpp-platform
- 1.5.8-SNAPSHOT
+ 1.5.8
JavaCPP Platform
The missing bridge between Java and native C++
diff --git a/pom.xml b/pom.xml
index 197b23aa7..d2680c3ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
org.bytedeco
javacpp
- 1.5.8-SNAPSHOT
+ 1.5.8
JavaCPP
The missing bridge between Java and native C++