From 4d31979e1ad743ca26576e9ed09b1f9b6d42c82b Mon Sep 17 00:00:00 2001 From: Nicolas Vannieuwkerke Date: Fri, 15 Sep 2023 09:17:57 +0200 Subject: [PATCH 1/3] release 0.3.2 --- CHANGELOG.md | 2 +- README.md | 2 +- plugins/nf-validation/src/resources/META-INF/MANIFEST.MF | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbfca98..43993d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # nextflow-io/nf-validation: Changelog -# Version 0.4.0 +# Version 0.3.2 - Add parameters defined on the top level of the schema and within the definitions section as expected params ([#79](https://github.com/nextflow-io/nf-validation/pull/79)) - Changed the `schema_filename` option of `fromSamplesheet` to `parameters_schema` to make this option more clear to the user ([#91](https://github.com/nextflow-io/nf-validation/pull/91)) diff --git a/README.md b/README.md index 640d9b4..74fafe7 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ _(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' } ``` 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 From 1a13f83fde602d83baa104ef9c13b0b3210180f2 Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Tue, 19 Sep 2023 10:27:06 +0200 Subject: [PATCH 2/3] Update readme comment --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 74fafe7..3ff3139 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,6 @@ 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' @@ -30,6 +28,11 @@ plugins { This is all that is needed - Nextflow will automatically fetch the plugin code at run time. +> [!NOTE] +> The snippet below 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" From 120e92eb7da30911135b9c1dc8cafbbe11c49561 Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Tue, 19 Sep 2023 10:28:26 +0200 Subject: [PATCH 3/3] =?UTF-8?q?Look=20up=20=F0=9F=99=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ff3139..4e4d767 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ plugins { This is all that is needed - Nextflow will automatically fetch the plugin code at run time. > [!NOTE] -> The snippet below will always try to install the latest version, good to make sure +> 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`