Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Changelog

## [0.9.2] 2026-04-29
## [1.0.0] 2026-04-29

- First release published to the [Nextflow Plugin Registry](https://registry.nextflow.io)
- Use "package" as default prefix
- Modernize main*.nf files
- Fix Jackson serialization of `java.time.OffsetDateTime` from Nextflow 24.10+ workflow metadata (#321)
Expand Down
8 changes: 4 additions & 4 deletions README-DEV.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ Registry](https://registry.nextflow.io), users can install it directly via
`NXF_PLUGINS_TEST_REPOSITORY` override is required.

```bash
nextflow run main.nf -plugins nf-quilt@0.9.2
nextflow run main.nf -plugins nf-quilt@1.0.0
```

To pin the plugin in `nextflow.config`:

```groovy
plugins {
id 'nf-quilt@0.9.2'
id 'nf-quilt@1.0.0'
}
```

Expand Down Expand Up @@ -71,14 +71,14 @@ via `-plugins nf-quilt@<version>`. For example, with a standard `nf-core`
pipeline like `sarek`:

```bash
nextflow run nf-core/sarek -profile test,docker -plugins nf-quilt@0.9.2 \
nextflow run nf-core/sarek -profile test,docker -plugins nf-quilt@1.0.0 \
--outdir "quilt+s3://bucket#package=nf-quilt/sarek"
```

Or with a local pipeline:

```bash
nextflow run ./main.nf -profile standard -plugins nf-quilt@0.9.2 \
nextflow run ./main.nf -profile standard -plugins nf-quilt@1.0.0 \
--outdir "quilt+s3://bucket#package=test/hurdat"
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {

// Plugin version: bump here to release a new version.
// Keep in sync with any references in CHANGELOG / README until the 1.0.0 release.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Stale comment now that 1.0.0 has shipped

The inline comment "Keep in sync with any references in CHANGELOG / README until the 1.0.0 release" refers to a milestone that this PR itself completes. The guidance no longer applies and the phrase could confuse future contributors who bump the version again.

Suggested change
// Keep in sync with any references in CHANGELOG / README until the 1.0.0 release.
// Plugin version: bump here to release a new version.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed — dropped the stale pre-1.0 sync comment.

version = '0.9.2'
version = '1.0.0'
group = 'io.nextflow'

dependencies {
Expand Down
Loading