Release 1.0.0 (#323) - #330
Merged
Merged
Conversation
Bump plugin version to 1.0.0 for the first publication on the Nextflow Plugin Registry. Consolidate the unreleased 0.9.2 CHANGELOG section into 1.0.0 (0.9.2 was a main-only intermediate, never published) and sweep README-DEV example commands. Closes #323 Closes #321 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
| @@ -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. | |||
There was a problem hiding this comment.
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. |
Member
Author
There was a problem hiding this comment.
Fixed — dropped the stale pre-1.0 sync comment.
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
First release published to the Nextflow Plugin Registry. Bumps the plugin version to
1.0.0, consolidating the unpublished0.9.2intermediate into the registry-migration release.This is the final PR in the migration tracked by #323. It bundles three previously-merged PRs:
OffsetDateTimeserialization fix for Nextflow 24.10+io.nextflow.nextflow-pluginGradle build systemChanges
build.gradle:version = '0.9.2'->'1.0.0'CHANGELOG.md: rename[0.9.2]section to[1.0.0]and add note about Nextflow Plugin Registry as the publishing channelREADME-DEV.md: bump examplenf-quilt@0.9.2references to@1.0.0The
dest-1.0.0test package has been pre-published tos3://udp-specsoQuiltPkgTest > should confirm contents of dest URIpasses in CI.Post-merge manual steps (human)
The actual registry publish is intentionally NOT automated in this PR:
git tag 1.0.0 && git push origin 1.0.0export NPR_API_KEY=... && ./gradlew releasePluginTest plan
./gradlew testpasses./gradlew checkpasses (JaCoCo gate satisfied)./gradlew packagePluginproducesbuild/distributions/nf-quilt-1.0.0.zipmake pkg-test WRITE_BUCKET=udp-specpublishednf-quilt/dest-1.0.0toudp-specCloses #323
Closes #321
🤖 Generated with Claude Code
Greptile Summary
This PR bumps the plugin version from
0.9.2to1.0.0acrossbuild.gradle,CHANGELOG.md, andREADME-DEV.mdin preparation for the first publish to the Nextflow Plugin Registry. All0.9.2references have been consistently updated and no stale occurrences remain in the repository.Confidence Score: 4/5
Safe to merge — changes are purely a version bump with no functional code modifications.
Only P2 finding (stale comment in build.gradle); no logic, security, or correctness issues present.
No files require special attention beyond the minor stale comment in build.gradle line 17.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A["build.gradle\nversion = '1.0.0'"] --> B["./gradlew packagePlugin\nnf-quilt-1.0.0.zip"] B --> C["git tag 1.0.0\ngit push origin 1.0.0"] C --> D["./gradlew releasePlugin\nNPR_API_KEY set"] D --> E["Nextflow Plugin Registry\nregistry.nextflow.io"] F["CHANGELOG.md\n1.0.0 section"] -.-> B G["README-DEV.md\nnf-quilt at 1.0.0"] -.-> EReviews (1): Last reviewed commit: "Release 1.0.0" | Re-trigger Greptile