Skip to content

Commit 485cde2

Browse files
committed
Release 1.5.0
1 parent 73e9845 commit 485cde2

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ jobs:
5151
run: make install
5252

5353
- name: Test
54-
run: nextflow run nf-prov-test/ -plugins nf-prov@1.5.0
54+
run: nextflow run nf-prov-test/ -plugins nf-prov@$(cat VERSION)

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to the nf-prov plugin will be documented here.
44

55
See [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [1.5.0] - 2025-09-04
8+
9+
- Use Nextflow Gradle plugin (#42)
10+
- Declare config options with ConfigScope (#44)
11+
- Add workflow outputs to WRROC report (#47)
12+
- Remove legacy provenance format (#48)
13+
- Use plugin registry (#50)
14+
715
## [1.4.0] - 2025-02-06
816

917
- Add Workflow Run RO-Crate format (#39)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ install:
1818

1919
# Publish the plugin
2020
release:
21-
./gradlew releasePlugin
21+
./gradlew releasePluginIfNotExists

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.5.0

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
plugins {
3-
id 'io.nextflow.nextflow-plugin' version '1.0.0-beta.6'
3+
id 'io.nextflow.nextflow-plugin' version '1.0.0-beta.10'
44
}
55

6-
version = '1.5.0'
6+
version = project.file('VERSION').text.trim()
77

88
nextflowPlugin {
99
nextflowVersion = '25.04.0'

0 commit comments

Comments
 (0)