Skip to content

Commit 6ad8b4d

Browse files
authored
Merge pull request #14 from Rylern/main
Update to 0.1.0-rc1
2 parents 9d0d006 + 007d87a commit 6ad8b4d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
MAVEN_USER: ${{ secrets.MAVEN_USER }}
3737
MAVEN_PASS: ${{ secrets.MAVEN_PASS }}
3838

39-
- uses: actions/upload-artifact@v3
39+
- uses: actions/upload-artifact@v4
4040
if: ${{ inputs.release }}
4141
with:
4242
name: ${{ github.event.repository.name }}-release-jar

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77
qupathExtension {
88
name = "qupath-extension-py4j"
9-
version = "0.1.0-SNAPSHOT"
9+
version = "0.1.0-rc1"
1010
group = "io.github.qupath"
1111
description = "Connect QuPath to Python using Py4J"
1212
automaticModule = "qupath.extension.py4j"

src/main/java/qupath/ext/py4j/core/QuPathEntryPoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ public static List<String> getObjectIds(Collection<? extends PathObject> pathObj
299299
*/
300300
public static List<String> getMeasurementNames(Collection<? extends PathObject> pathObjects) {
301301
return pathObjects.stream()
302-
.flatMap(p -> p.getMeasurementList().getMeasurementNames().stream())
302+
.flatMap(p -> p.getMeasurementList().getNames().stream())
303303
.distinct()
304304
.toList();
305305
}

0 commit comments

Comments
 (0)