Skip to content

Commit

Permalink
Release version 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Mar 10, 2017
1 parent d7d6af2 commit bafcdf1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

### March 11, 2017 version 1.3.2
* Add new "org.bytedeco.javacpp.cachedir.nosubdir" system property to restore old behavior ([issue #167](https://github.com/bytedeco/javacpp/issues/167))
* Prevent `Pointer` from copying array data from NIO buffers that are also direct ([issue bytedeco/javacpp-presets#380](https://github.com/bytedeco/javacpp-presets/issues/380))
* Fix `SharedPtrAdapter` and `UniquePtrAdapter` of the `Generator` for `const` types ([issue #166](https://github.com/bytedeco/javacpp/issues/166))
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Please feel free to ask questions on [the mailing list](http://groups.google.com

Downloads
---------
* JavaCPP 1.3.1 binary archive [javacpp-1.3.1-bin.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.3.1/javacpp-1.3.1-bin.zip) (321 KB)
* JavaCPP 1.3.1 source archive [javacpp-1.3.1-src.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.3.1/javacpp-1.3.1-src.zip) (297 KB)
* JavaCPP 1.3.2 binary archive [javacpp-1.3.2-bin.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.3.2/javacpp-1.3.2-bin.zip) (325 KB)
* JavaCPP 1.3.2 source archive [javacpp-1.3.2-src.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.3.2/javacpp-1.3.2-src.zip) (300 KB)

We can also have everything downloaded and installed automatically with:

Expand All @@ -27,20 +27,20 @@ We can also have everything downloaded and installed automatically with:
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
</dependency>
```

* Gradle (inside the `build.gradle` file)
```groovy
dependencies {
compile group: 'org.bytedeco', name: 'javacpp', version: '1.3.1'
compile group: 'org.bytedeco', name: 'javacpp', version: '1.3.2'
}
```

* sbt (inside the `build.sbt` file)
```scala
libraryDependencies += "org.bytedeco" % "javacpp" % "1.3.1"
libraryDependencies += "org.bytedeco" % "javacpp" % "1.3.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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp</artifactId>
<version>1.3.2-SNAPSHOT</version>
<version>1.3.2</version>

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

0 comments on commit bafcdf1

Please sign in to comment.