Skip to content

Commit

Permalink
Merge pull request #20 from petebankhead/version
Browse files Browse the repository at this point in the history
Start targeting QuPath v0.6.0-SNAPSHOT
  • Loading branch information
petebankhead authored May 1, 2024
2 parents b82abb3 + 01a5072 commit c9380c5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## Version 0.3.0-SNAPSHOT
## Version 0.4.0-SNAPSHOT

*Work-in-progress for QuPath v0.6.0*


## Version 0.3.0

* Compatibility with QuPath v0.5.0
* Improved `DnnModel` implementation with better memory management
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext.qupathVersion = gradle.ext.qupathVersion

base {
description = 'QuPath extension to use Deep Java Library'
version = "0.3.1-SNAPSHOT"
version = "0.4.0-SNAPSHOT"
group = 'io.github.qupath'
}

Expand Down Expand Up @@ -65,11 +65,11 @@ tasks.register("copyDependencies", Copy) {
}

/*
* Ensure Java 17 compatibility
* Ensure Java 21 compatibility
*/
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
languageVersion = JavaLanguageVersion.of(21)
}
if (project.properties['sources'])
withSourcesJar()
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
pluginManagement {
plugins {
id 'org.bytedeco.gradle-javacpp-platform' version '1.5.9'
id 'org.bytedeco.gradle-javacpp-platform' version '1.5.10'
}
}

rootProject.name = 'qupath-extension-djl'

gradle.ext.qupathVersion = "0.5.0"
gradle.ext.qupathVersion = "0.6.0-SNAPSHOT"

dependencyResolutionManagement {

Expand Down

0 comments on commit c9380c5

Please sign in to comment.