Skip to content

Commit

Permalink
Release version 1.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Jun 5, 2023
1 parent 9098dcd commit 65ca35e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

### June 6, 2023 version 1.5.9
* Fix compatibility with Gradle 7.6.x ([issue #28](https://github.com/bytedeco/gradle-javacpp/issues/28))

### November 2, 2022 version 1.5.8
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'org.bytedeco'
version = '1.5.9-SNAPSHOT'
version = '1.5.9'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
4 changes: 2 additions & 2 deletions samples/javacv-demo-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
kotlin("jvm").version("1.3.72")
// Apply the java-library plugin for API and implementation separation.
`java-library`
id("org.bytedeco.gradle-javacpp-platform").version("1.5.8")
id("org.bytedeco.gradle-javacpp-platform").version("1.5.9")
}

repositories {
Expand All @@ -15,7 +15,7 @@ repositories {

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("org.bytedeco:javacv-platform:1.5.8")
implementation("org.bytedeco:javacv-platform:1.5.9")
}

tasks {
Expand Down
6 changes: 3 additions & 3 deletions samples/javacv-demo/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
plugins {
id 'java-library'
id 'org.bytedeco.gradle-javacpp-platform' version '1.5.8'
id 'org.bytedeco.gradle-javacpp-platform' version '1.5.9'
}

group = 'org.bytedeco'
version = '1.5.8'
version = '1.5.9'

repositories {
mavenLocal()
Expand All @@ -13,7 +13,7 @@ repositories {
}

dependencies {
api "org.bytedeco:javacv-platform:1.5.8"
api "org.bytedeco:javacv-platform:1.5.9"
// api "org.bytedeco:opencv-platform-gpu:4.6.0-$version"
// api "org.bytedeco:ffmpeg-platform-gpl:5.1.2-$version"
testImplementation 'junit:junit:4.13.2'
Expand Down
2 changes: 1 addition & 1 deletion samples/javacv-demo/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pluginManagement {

rootProject.name = 'javacv-demo'

gradle.rootProject { ext.javacppVersion = '1.5.8' }
gradle.rootProject { ext.javacppVersion = '1.5.9' }
2 changes: 1 addition & 1 deletion samples/zlib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java-library'
id 'org.bytedeco.gradle-javacpp-build' version '1.5.8'
id 'org.bytedeco.gradle-javacpp-build' version '1.5.9'
id 'maven-publish'
id 'signing'
}
Expand Down
2 changes: 1 addition & 1 deletion samples/zlib/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pluginManagement {

rootProject.name = 'zlib'

gradle.rootProject { ext.javacppVersion = '1.5.8' }
gradle.rootProject { ext.javacppVersion = '1.5.9' }

0 comments on commit 65ca35e

Please sign in to comment.