From 0dfb8bdad7d169d94e3c9d44c85c1f772cfa4786 Mon Sep 17 00:00:00 2001
From: nservant <nservant@curie.fr>
Date: Tue, 30 Apr 2019 17:29:48 +0200
Subject: [PATCH] bump 1.0.0

---
 .travis.yml     | 2 +-
 Dockerfile      | 2 +-
 environment.yml | 2 +-
 nextflow.config | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index bc8037e..b3e7a99 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,7 +14,7 @@ before_install:
   - docker pull nfcore/hic:dev
   # Fake the tag locally so that the pipeline runs properly
   # Looks weird when this is :dev to :dev, but makes sense when testing code for a release (:dev to :1.0.1)
-  - docker tag nfcore/hic:dev nfcore/hic:dev
+  - docker tag nfcore/hic:dev nfcore/hic:1.0.0
 
 install:
   # Install Nextflow
diff --git a/Dockerfile b/Dockerfile
index 490ee36..06374cf 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,4 +7,4 @@ 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.0dev/bin:$PATH
+ENV PATH /opt/conda/envs/nf-core-hic-1.0.0/bin:$PATH
diff --git a/environment.yml b/environment.yml
index 745fdbc..7530872 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.0dev
+name: nf-core-hic-1.0.0
 channels:
   - conda-forge
   - bioconda
diff --git a/nextflow.config b/nextflow.config
index eba5139..356f200 100644
--- a/nextflow.config
+++ b/nextflow.config
@@ -45,7 +45,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.0.0'
 
 // Load base.config by default for all pipelines
 includeConfig 'conf/base.config'
@@ -102,7 +102,7 @@ manifest {
   description = 'Analysis of Chromosome Conformation Capture data (Hi-C)'
   mainScript = 'main.nf'
   nextflowVersion = '>=0.32.0'
-  version = '1.0dev'
+  version = '1.0.0'
 }
 
 // Function to ensure that resource requirements don't go beyond
-- 
GitLab