diff --git a/CHANGELOG.md b/CHANGELOG.md index 52eb926..804cc18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +## [1.0.1] - 2024-02-22 + +### Changed + +- Pinned nf-validation (@1.1.3) and nf-iridanext (@0.2.0) plugins to specific versions in nextflow.config + ## [1.0.0] - 2024-01-26 ### Added diff --git a/nextflow.config b/nextflow.config index 0ad21a7..429d5d1 100644 --- a/nextflow.config +++ b/nextflow.config @@ -155,8 +155,8 @@ singularity.registry = 'quay.io' // Nextflow plugins plugins { - id 'nf-validation' // Validation of pipeline parameters and creation of an input channel from a sample sheet - id 'nf-iridanext' + id 'nf-validation@1.1.3' // Validation of pipeline parameters and creation of an input channel from a sample sheet + id 'nf-iridanext@0.2.0' } // Export these variables to prevent local Python/R libraries from conflicting with those in the container @@ -198,7 +198,7 @@ manifest { description = """IRIDA Next pipeline for fetching data from NCBI""" mainScript = 'main.nf' nextflowVersion = '!>=23.04.0' - version = '1.0.0' + version = '1.0.1' doi = '' defaultBranch = 'main' }