Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Release PR 0.3.2 #93

Merged
merged 4 commits into from
Sep 19, 2023
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nextflow-io/nf-validation: Changelog

## Version 0.4.0 (dev)
# Version 0.3.2

### Bug fixes

Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
ewels marked this conversation as resolved.
Show resolved Hide resolved
}
```

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 `[email protected]`

You can now include the plugin helper functions into your Nextflow pipeline:

```groovy title="main.nf"
Expand Down
2 changes: 1 addition & 1 deletion plugins/nf-validation/src/resources/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -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