Skip to content

Commit 826af16

Browse files
committed
Bump version to 1.1.0
1 parent 7730c1f commit 826af16

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ before_install:
1414
- docker pull nfcore/chipseq:dev
1515
# Fake the tag locally so that the pipeline runs properly
1616
# Looks weird when this is :dev to :dev, but makes sense when testing code for a release (:dev to :1.0.1)
17-
- docker tag nfcore/chipseq:dev nfcore/chipseq:dev
17+
- docker tag nfcore/chipseq:dev nfcore/chipseq:1.1.0
1818

1919
install:
2020
# Install Nextflow

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ LABEL authors="Philip Ewels" \
44

55
COPY environment.yml /
66
RUN conda env create -f /environment.yml && conda clean -a
7-
RUN conda env export --name nf-core-chipseq-1.0.1dev > nf-core-chipseq-1.0.1dev.yml
8-
ENV PATH /opt/conda/envs/nf-core-chipseq-1.0.1dev/bin:$PATH
7+
RUN conda env export --name nf-core-chipseq-1.1.0 > nf-core-chipseq-1.1.0.yml
8+
ENV PATH /opt/conda/envs/nf-core-chipseq-1.1.0/bin:$PATH

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# You can use this file to create a conda environment for this pipeline:
22
# conda env create -f environment.yml
3-
name: nf-core-chipseq-1.0.1dev
3+
name: nf-core-chipseq-1.1.0
44
channels:
55
- conda-forge
66
- bioconda

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ params {
8585

8686
// Container slug. Stable releases should specify release tag!
8787
// Developmental code should specify :dev
88-
process.container = 'nfcore/chipseq:dev'
88+
process.container = 'nfcore/chipseq:1.1.0'
8989

9090
// Load base.config by default for all pipelines
9191
includeConfig 'conf/base.config'
@@ -147,7 +147,7 @@ manifest {
147147
description = 'ChIP-seq peak-calling and differential analysis pipeline.'
148148
mainScript = 'main.nf'
149149
nextflowVersion = '>=19.04.0'
150-
version = '1.0.1dev'
150+
version = '1.1.0'
151151
}
152152

153153
// Function to ensure that resource requirements don't go beyond

0 commit comments

Comments
 (0)