Skip to content

Commit badd2a2

Browse files
committed
Bump versions
1 parent 611a3ee commit badd2a2

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
3636
- name: Build new docker image
3737
if: env.GIT_DIFF
38-
run: docker build --no-cache . -t nfcore/chipseq:dev
38+
run: docker build --no-cache . -t nfcore/chipseq:1.2.0
3939

4040
- name: Pull docker image
4141
if: ${{ !env.GIT_DIFF }}
4242
run: |
4343
docker pull nfcore/chipseq:dev
44-
docker tag nfcore/chipseq:dev nfcore/chipseq:dev
44+
docker tag nfcore/chipseq:dev nfcore/chipseq:1.2.0
4545
4646
- name: Install Nextflow
4747
run: |
@@ -75,13 +75,13 @@ jobs:
7575
7676
- name: Build new docker image
7777
if: env.GIT_DIFF
78-
run: docker build --no-cache . -t nfcore/chipseq:dev
78+
run: docker build --no-cache . -t nfcore/chipseq:1.2.0
7979

8080
- name: Pull docker image
8181
if: ${{ !env.GIT_DIFF }}
8282
run: |
8383
docker pull nfcore/chipseq:dev
84-
docker tag nfcore/chipseq:dev nfcore/chipseq:dev
84+
docker tag nfcore/chipseq:dev nfcore/chipseq:1.2.0
8585
8686
- name: Install Nextflow
8787
run: |

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

6-
## [1.2.0] - 2020-06-04
6+
## [1.2.0] - 2020-07-02
77

88
### `Added`
99

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ COPY environment.yml /
77
RUN conda env create -f /environment.yml && conda clean -a
88

99
# Add conda installation dir to PATH (instead of doing 'conda activate')
10-
ENV PATH /opt/conda/envs/nf-core-chipseq-1.1.1dev/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-chipseq-1.2.0/bin:$PATH
1111

1212
# Dump the details of the installed packages to a file for posterity
13-
RUN conda env export --name nf-core-chipseq-1.1.1dev > nf-core-chipseq-1.1.1dev.yml
13+
RUN conda env export --name nf-core-chipseq-1.2.0 > nf-core-chipseq-1.2.0.yml
1414

1515
# Instruct R processes to use these empty files instead of clashing with a local version
1616
RUN touch .Rprofile

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.1.1dev
3+
name: nf-core-chipseq-1.2.0
44
channels:
55
- conda-forge
66
- bioconda

nextflow.config

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

9797
// Container slug. Stable releases should specify release tag!
9898
// Developmental code should specify :dev
99-
process.container = 'nfcore/chipseq:dev'
99+
process.container = 'nfcore/chipseq:1.2.0'
100100

101101
// Load base.config by default for all pipelines
102102
includeConfig 'conf/base.config'
@@ -169,7 +169,7 @@ manifest {
169169
description = 'ChIP-seq peak-calling and differential analysis pipeline.'
170170
mainScript = 'main.nf'
171171
nextflowVersion = '>=19.10.0'
172-
version = '1.1.1dev'
172+
version = '1.2.0'
173173
}
174174

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

0 commit comments

Comments
 (0)