From 0124e31a0c44406971aa65d77fe43de28cb2dbdb Mon Sep 17 00:00:00 2001 From: James Fellows Yates Date: Wed, 2 Jun 2021 11:49:53 +0200 Subject: [PATCH] Bump version for patch release --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 2 +- Dockerfile | 4 ++-- environment.yml | 3 +-- nextflow.config | 6 +++--- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 213c2ac69..153a4befd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,13 +37,13 @@ jobs: - name: Build new docker image if: env.MATCHED_FILES - run: docker build --no-cache . -t nfcore/eager:dev + run: docker build --no-cache . -t nfcore/eager:2.3.5 - name: Pull docker image if: ${{ !env.MATCHED_FILES }} run: | docker pull nfcore/eager:dev - docker tag nfcore/eager:dev nfcore/eager:dev + docker tag nfcore/eager:dev nfcore/eager:2.3.5 - name: Install Nextflow env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d36c44ec..254ce499f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## v2.3.5dev - [date] +## v2.3.5 - 2021-06-03 ### `Added` diff --git a/Dockerfile b/Dockerfile index 005098d7e..fc295bd15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY environment.yml / RUN conda env create --quiet -f /environment.yml && conda clean -a # Add conda installation dir to PATH (instead of doing 'conda activate') -ENV PATH /opt/conda/envs/nf-core-eager-2.3.5dev/bin:$PATH +ENV PATH /opt/conda/envs/nf-core-eager-2.3.5/bin:$PATH # Dump the details of the installed packages to a file for posterity -RUN conda env export --name nf-core-eager-2.3.5dev > nf-core-eager-2.3.5dev.yml +RUN conda env export --name nf-core-eager-2.3.5 > nf-core-eager-2.3.5.yml \ No newline at end of file diff --git a/environment.yml b/environment.yml index 0b147d356..f752203a6 100644 --- a/environment.yml +++ b/environment.yml @@ -1,6 +1,6 @@ # You can use this file to create a conda environment for this pipeline: # conda env create -f environment.yml -name: nf-core-eager-2.3.5dev +name: nf-core-eager-2.3.5 channels: - conda-forge - bioconda @@ -49,4 +49,3 @@ dependencies: - bioconda::eigenstratdatabasetools=1.0.2 - bioconda::mapdamage2=2.2.0 - bioconda::bbmap=38.87 - diff --git a/nextflow.config b/nextflow.config index 3e85581f4..db0a875d2 100644 --- a/nextflow.config +++ b/nextflow.config @@ -266,7 +266,7 @@ params { // Container slug. Stable releases should specify release tag! // Developmental code should specify :dev -process.container = 'nfcore/eager:dev' +process.container = 'nfcore/eager:2.3.5' // Load base.config by default for all pipelines includeConfig 'conf/base.config' @@ -396,7 +396,7 @@ manifest { description = 'A fully reproducible and state-of-the-art ancient DNA analysis pipeline' mainScript = 'main.nf' nextflowVersion = '>=20.07.1' - version = '2.3.5dev' + version = '2.3.5' } // Function to ensure that resource requirements don't go beyond @@ -430,4 +430,4 @@ def check_max(obj, type) { return obj } } -} +} \ No newline at end of file