Skip to content

Commit fcb0452

Browse files
committed
Post release version bump
1 parent fa6f061 commit fcb0452

5 files changed

Lines changed: 17 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 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:2.4.2
40+
run: docker build --no-cache . -t nfcore/eager:dev
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:2.4.2
46+
docker tag nfcore/eager:dev nfcore/eager:dev
4747
4848
- name: Install Nextflow
4949
env:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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+
## [dev]
7+
8+
### `Added`
9+
10+
### `Fixed`
11+
12+
### `Dependencies`
13+
14+
### `Deprecated`
15+
616
## [2.4.2] - 2022-01-24
717

818
### `Added`

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.4.2/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-eager-2.4.3dev/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.4.2 > nf-core-eager-2.4.2.yml
13+
RUN conda env export --name nf-core-eager-2.4.3dev > nf-core-eager-2.4.3dev.yml

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-eager-2.4.2
3+
name: nf-core-eager-2.4.3dev
44
channels:
55
- conda-forge
66
- bioconda

nextflow.config

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

285285
// Container slug. Stable releases should specify release tag!
286286
// Developmental code should specify :dev
287-
process.container = 'nfcore/eager:2.4.2'
287+
process.container = 'nfcore/eager:dev'
288288

289289
// Load base.config by default for all pipelines
290290
includeConfig 'conf/base.config'
@@ -414,7 +414,7 @@ manifest {
414414
description = 'A fully reproducible and state-of-the-art ancient DNA analysis pipeline'
415415
mainScript = 'main.nf'
416416
nextflowVersion = '>=20.07.1'
417-
version = '2.4.2'
417+
version = '2.4.3dev'
418418
}
419419

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

0 commit comments

Comments
 (0)