From 8ab27056f67139a8b7b54e671e347417971bf5a6 Mon Sep 17 00:00:00 2001
From: nservant <nicolas.servant@curie.fr>
Date: Thu, 18 Jun 2020 16:28:30 +0200
Subject: [PATCH] bump v1.2.0

---
 .github/workflows/ci.yml | 2 +-
 CHANGELOG.md             | 4 ++--
 Dockerfile               | 4 ++--
 environment.yml          | 2 +-
 nextflow.config          | 4 ++--
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 34410af..a7f734d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -22,7 +22,7 @@ jobs:
       - name: Pull docker image
         run: |
           docker pull nfcore/hic:dev
-          docker tag nfcore/hic:dev nfcore/hic:dev
+          docker tag nfcore/hic:dev nfcore/hic:1.2.0
       - name: Run pipeline with test data
         run: |
           # nf-core: You can customise CI pipeline run tests as required
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c8645cd..6852128 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,11 +3,11 @@
 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).
 
-## v1.2.0dev - 2020-05-12
+## v1.2.0 - 2020-06-18
 
 ### `Added`
 
-* Bump v1.2.0dev
+* Bump v1.2.0
 * Merge template nf-core 1.9
 * Move some options to camel_case
 * Update python scripts for python3
diff --git a/Dockerfile b/Dockerfile
index cbb686f..5aecaa6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,8 +7,8 @@ RUN apt-get update && apt-get install -y gcc g++ && apt-get clean -y
 
 COPY environment.yml /
 RUN conda env create -f /environment.yml && conda clean -a
-ENV PATH /opt/conda/envs/nf-core-hic-1.2.0dev/bin:$PATH
+ENV PATH /opt/conda/envs/nf-core-hic-1.2.0/bin:$PATH
 
 # Dump the details of the installed packages to a file for posterity
-RUN conda env export --name nf-core-hic-1.2.0dev > nf-core-hic-1.2.0dev.yml
+RUN conda env export --name nf-core-hic-1.2.0 > nf-core-hic-1.2.0.yml
 
diff --git a/environment.yml b/environment.yml
index fd6119a..b9e6c02 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.2.0dev
+name: nf-core-hic-1.2.0
 channels:
   - conda-forge
   - bioconda
diff --git a/nextflow.config b/nextflow.config
index 7ad9a22..f7a5af7 100644
--- a/nextflow.config
+++ b/nextflow.config
@@ -64,7 +64,7 @@ params {
 
 // Container slug. Stable releases should specify release tag!
 // Developmental code should specify :dev
-process.container = 'nfcore/hic:dev'
+process.container = 'nfcore/hic:1.2.0'
 
 // Load base.config by default for all pipelines
 includeConfig 'conf/base.config'
@@ -135,7 +135,7 @@ manifest {
   description = 'Analysis of Chromosome Conformation Capture data (Hi-C)'
   mainScript = 'main.nf'
   nextflowVersion = '>=19.10.0'
-  version = '1.2.0dev'
+  version = '1.2.0'
 }
 
 // Function to ensure that resource requirements don't go beyond
-- 
GitLab