From 479a390169be9320f90e9355ffb238374823c43c Mon Sep 17 00:00:00 2001 From: Phil Ewels <phil.ewels@scilifelab.se> Date: Sat, 7 Nov 2020 06:57:54 +0100 Subject: [PATCH] Change version to 1.3.0dev --- CHANGELOG.md | 2 +- Dockerfile | 4 ++-- environment.yml | 2 +- nextflow.config | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91e2840..219b7a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ 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). -## v1.3dev +## v1.3.0dev * Template update for nf-core/tools v1.11 diff --git a/Dockerfile b/Dockerfile index ea66370..20b92a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,10 +9,10 @@ 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-hic-1.3dev/bin:$PATH +ENV PATH /opt/conda/envs/nf-core-hic-1.3.0dev/bin:$PATH # Dump the details of the installed packages to a file for posterity -RUN conda env export --name nf-core-hic-1.3dev > nf-core-hic-1.3dev.yml +RUN conda env export --name nf-core-hic-1.3.0dev > nf-core-hic-1.3.0dev.yml # Instruct R processes to use these empty files instead of clashing with a local version RUN touch .Rprofile diff --git a/environment.yml b/environment.yml index 2caba8e..6ee111e 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-hic-1.3dev +name: nf-core-hic-1.3.0dev channels: - conda-forge - bioconda diff --git a/nextflow.config b/nextflow.config index 2cc0c22..14a4f91 100644 --- a/nextflow.config +++ b/nextflow.config @@ -153,7 +153,7 @@ manifest { description = 'Analysis of Chromosome Conformation Capture data (Hi-C)' mainScript = 'main.nf' nextflowVersion = '>=19.10.0' - version = '1.3dev' + version = '1.3.0dev' } // Function to ensure that resource requirements don't go beyond -- GitLab