diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cf19a0..1320c71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # nextflow-io/nf-validation: Changelog -## Version 0.4.0 (dev) +# Version 0.3.2 ### Bug fixes diff --git a/README.md b/README.md index 640d9b4..4e4d767 100644 --- a/README.md +++ b/README.md @@ -20,16 +20,19 @@ Supported sample sheet formats are CSV, TSV and YAML (simple). Declare the plugin in your Nextflow pipeline configuration file: -_(make sure you pin the latest stable release version after the `@`)_ - ```groovy title="nextflow.config" plugins { - id 'nf-validation@0.3.1' + id 'nf-validation' } ``` This is all that is needed - Nextflow will automatically fetch the plugin code at run time. +> [!NOTE] +> The snippet above will always try to install the latest version, good to make sure +> that the latest bug fixes are included! However, this can cause difficulties if running +> offline. You can pin a specific release using the syntax `nf-validation@0.3.2` + You can now include the plugin helper functions into your Nextflow pipeline: ```groovy title="main.nf" diff --git a/plugins/nf-validation/src/resources/META-INF/MANIFEST.MF b/plugins/nf-validation/src/resources/META-INF/MANIFEST.MF index 618cf7f..8489d7f 100644 --- a/plugins/nf-validation/src/resources/META-INF/MANIFEST.MF +++ b/plugins/nf-validation/src/resources/META-INF/MANIFEST.MF @@ -1,6 +1,6 @@ Manifest-Version: 1.0 Plugin-Id: nf-validation -Plugin-Version: 0.3.1 +Plugin-Version: 0.3.2 Plugin-Class: nextflow.validation.ValidationPlugin Plugin-Provider: nextflow Plugin-Requires: >=22.10.0