Skip to content

Commit

Permalink
Updates for release with QuPath v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
petebankhead committed Dec 1, 2023
1 parent a886a4a commit dfe85c8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ plugins {
ext.moduleName = 'qupath.extension.djl'
ext.qupathVersion = gradle.ext.qupathVersion

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

def djlVersion = libs.versions.deepJavaLibrary.get()

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pluginManagement {

rootProject.name = 'qupath-extension-djl'

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

dependencyResolutionManagement {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/qupath/ext/djl/DjlExtension.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public GitHubRepo getRepository() {

@Override
public Version getQuPathVersion() {
return Version.parse("0.5.0-SNAPSHOT");
return Version.parse("0.5.0");
}


Expand Down

0 comments on commit dfe85c8

Please sign in to comment.