Skip to content

Commit

Permalink
Release version 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Apr 8, 2019
1 parent 29183e8 commit e39dbe5
Show file tree
Hide file tree
Showing 3 changed files with 7 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 @@

### April 11, 2019 version 1.5
* Have `Parser` output `setter` as dummy parameter name for setter methods to clarify usage
* Add `Indexer.strides(long... sizes)` and use as default strides when not specified by the user
* Add `long...` constructors, getters, and setters to `CLongPointer` and `SizeTPointer` for convenience
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ Please feel free to ask questions on [the mailing list](http://groups.google.com

Downloads
---------
* JavaCPP 1.4.4 binary archive [javacpp-1.4.4-bin.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.4/javacpp-1.4.4-bin.zip) (392 KB)
* JavaCPP 1.4.4 source archive [javacpp-1.4.4-src.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.4/javacpp-1.4.4-src.zip) (363 KB)
Archives containing JAR files are available as [releases](https://github.com/bytedeco/javacpp/releases).

We can also have everything downloaded and installed automatically with:

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

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

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

* sbt (inside the `build.sbt` file)
```scala
libraryDependencies += "org.bytedeco" % "javacpp" % "1.4.4"
libraryDependencies += "org.bytedeco" % "javacpp" % "1.5"
```

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.5-SNAPSHOT</version>
<version>1.5</version>

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

0 comments on commit e39dbe5

Please sign in to comment.