Skip to content

Commit 2993303

Browse files
committed
Bump versions for release
1 parent 76d048b commit 2993303

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
3838
- name: Build new docker image
3939
if: env.MATCHED_FILES
40-
run: docker build --no-cache . -t nfcore/eager:dev
40+
run: docker build --no-cache . -t nfcore/eager:2.4.0
4141

4242
- name: Pull docker image
4343
if: ${{ !env.MATCHED_FILES }}
4444
run: |
4545
docker pull nfcore/eager:dev
46-
docker tag nfcore/eager:dev nfcore/eager:dev
46+
docker tag nfcore/eager:dev nfcore/eager:2.4.0
4747
4848
- name: Install Nextflow
4949
env:
@@ -212,4 +212,4 @@ jobs:
212212
nextflow run ${GITHUB_WORKSPACE} -profile test_tsv_humanbam,docker --skip_fastqc --skip_adapterremoval --skip_deduplication --skip_qualimap --skip_preseq --skip_damage_calculation --run_mtnucratio
213213
- name: RESCALING Run basic pipeline with basic pipeline but with mapDamage rescaling of BAM files. Note this will be slow
214214
run: |
215-
nextflow run ${GITHUB_WORKSPACE} -profile test_tsv,docker --run_mapdamage_rescaling --run_genotyping --genotyping_tool hc --genotyping_source 'rescaled'
215+
nextflow run ${GITHUB_WORKSPACE} -profile test_tsv,docker --run_mapdamage_rescaling --run_genotyping --genotyping_tool hc --genotyping_source 'rescaled'

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
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-
## v2.4dev - [unreleased]
6+
## [2.4.0] - 20201-08-31
77

88
### `Added`
99

@@ -51,7 +51,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5151

5252
### `Deprecated`
5353

54-
## v2.3.5 - 2021-06-03
54+
## [2.3.5] - 2021-06-03
5555

5656
### `Added`
5757

@@ -75,7 +75,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7575

7676
### `Deprecated`
7777

78-
## v2.3.4 - 2021-05-05
78+
## [2.3.4] - 2021-05-05
7979

8080
### `Added`
8181

@@ -96,7 +96,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9696

9797
### `Deprecated`
9898

99-
## v2.3.3 - 2021-04-08
99+
## [2.3.3] - 2021-04-08
100100

101101
### `Added`
102102

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY environment.yml /
77
RUN conda env create --quiet -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-eager-2.4dev/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-eager-2.4.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-eager-2.4dev > nf-core-eager-2.4dev.yml
13+
RUN conda env export --name nf-core-eager-2.4.0 > nf-core-eager-2.4.0.yml

environment.yml

Lines changed: 2 additions & 2 deletions
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-eager-2.4dev
3+
name: nf-core-eager-2.4.0
44
channels:
55
- conda-forge
66
- bioconda
@@ -49,4 +49,4 @@ dependencies:
4949
- bioconda::eigenstratdatabasetools=1.0.2
5050
- bioconda::mapdamage2=2.2.1
5151
- bioconda::bbmap=38.92
52-
- bioconda::bcftools=1.12
52+
- bioconda::bcftools=1.12

nextflow.config

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

279279
// Container slug. Stable releases should specify release tag!
280280
// Developmental code should specify :dev
281-
process.container = 'nfcore/eager:dev'
281+
process.container = 'nfcore/eager:2.4.0'
282282

283283
// Load base.config by default for all pipelines
284284
includeConfig 'conf/base.config'
@@ -408,7 +408,7 @@ manifest {
408408
description = 'A fully reproducible and state-of-the-art ancient DNA analysis pipeline'
409409
mainScript = 'main.nf'
410410
nextflowVersion = '>=20.07.1'
411-
version = '2.4dev'
411+
version = '2.4.0'
412412
}
413413

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

0 commit comments

Comments
 (0)