Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,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.
version = '0.9.2'
version = '1.0.0'
group = 'io.nextflow'

dependencies {
Expand Down
Loading