diff --git a/CHANGELOG.md b/CHANGELOG.md
index a4777704c..47b3c8708 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
+### November 5, 2019 version 1.5.2
* Provide `ByteIndexer` with value getters and setters for unsigned `byte` or `short`, `half`, `bfloat16`, and `boolean` types as well
* Introduce `PointerScope.extend()` to prevent deallocation on the next call to `close()`
* Make `Generator` avoid ambiguous conversion errors from `UniquePtrAdapter` to `std::unique_ptr` ([pull #353](https://github.com/bytedeco/javacpp/pull/353))
diff --git a/README.md b/README.md
index 48d1f8959..d8f22e544 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.1
+ 1.5.2
```
* Gradle (inside the `build.gradle` file)
```groovy
dependencies {
- compile group: 'org.bytedeco', name: 'javacpp', version: '1.5.1'
+ compile group: 'org.bytedeco', name: 'javacpp', version: '1.5.2'
}
```
* Leiningen (inside the `project.clj` file)
```clojure
:dependencies [
- [org.bytedeco/javacpp "1.5.1"]
+ [org.bytedeco/javacpp "1.5.2"]
]
```
* sbt (inside the `build.sbt` file)
```scala
- libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.1"
+ libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.2"
```
Another option available for Scala users is [sbt-javacpp](https://github.com/bytedeco/sbt-javacpp).
diff --git a/pom.xml b/pom.xml
index fe787b83b..65b548b05 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
org.bytedeco
javacpp
- 1.5.2-SNAPSHOT
+ 1.5.2
JavaCPP
The missing bridge between Java and native C++