Skip to content

Commit

Permalink
Release version 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Nov 5, 2019
1 parent 9239a17 commit 3ddea3e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions 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))
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -26,27 +26,27 @@ We can also have everything downloaded and installed automatically with:
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>
```

* 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).
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>

<name>JavaCPP</name>
<description>The missing bridge between Java and native C++</description>
Expand Down

0 comments on commit 3ddea3e

Please sign in to comment.