Skip to content

Commit

Permalink
Release version 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Jul 17, 2018
1 parent 925bc9e commit c036db2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

### July 17, 2018 version 1.4.2
* Add `Loader.getJavaVM()` method to get the JNI `JavaVM` object as required to initialize some libraries
* Fix `Parser` from outputting accessors not available with `std::forward_list` or `std::list`
* Use `pthread_setspecific()` in `Generator` to detach automatically native threads on exit for Android ([pull #243](https://github.com/bytedeco/javacpp/pull/243))
Expand Down
12 changes: 6 additions & 6 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.4.1 binary archive [javacpp-1.4.1-bin.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.1/javacpp-1.4.1-bin.zip) (359 KB)
* JavaCPP 1.4.1 source archive [javacpp-1.4.1-src.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.1/javacpp-1.4.1-src.zip) (327 KB)
* JavaCPP 1.4.2 binary archive [javacpp-1.4.2-bin.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.2/javacpp-1.4.2-bin.zip) (367 KB)
* JavaCPP 1.4.2 source archive [javacpp-1.4.2-src.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.2/javacpp-1.4.2-src.zip) (335 KB)

We can also have everything downloaded and installed automatically with:

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

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

* Leiningen (inside the `project.clj` file)
```clojure
:dependencies [
[org.bytedeco/javacpp "1.4.1"]
[org.bytedeco/javacpp "1.4.2"]
]
```

* sbt (inside the `build.sbt` file)
```scala
libraryDependencies += "org.bytedeco" % "javacpp" % "1.4.1"
libraryDependencies += "org.bytedeco" % "javacpp" % "1.4.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.4.2-SNAPSHOT</version>
<version>1.4.2</version>

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

0 comments on commit c036db2

Please sign in to comment.