Skip to content

Commit ecdb926

Browse files
committed
bump versions
2 parents 6f3b529 + 28d7a9e commit ecdb926

5 files changed

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

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,20 @@
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-
## [2.4.7] - 2023-05-16
6+
## [2.4.7dev] -
7+
8+
### `Added`
79

810
### `Fixed`
911

1012
- [#983](https://github.com/nf-core/eager/issues/983) Bump `pygments` version due to incompatibility with MultiQC dependencies (♥ to @MinLuke for reporting)
1113

14+
### `Dependencies`
15+
16+
- `pygments`: 2.9 -> 2.14
17+
18+
### `Deprecated`
19+
1220
## [2.4.6] - 2022-11-14
1321

1422
### `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.6/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-eager-2.4.7/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.6 > nf-core-eager-2.4.6.yml
13+
RUN conda env export --name nf-core-eager-2.4.7 > nf-core-eager-2.4.7.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.4.6
3+
name: nf-core-eager-2.4.7
44
channels:
55
- conda-forge
66
- bioconda
@@ -50,4 +50,4 @@ dependencies:
5050
- bioconda::eigenstratdatabasetools=1.0.2
5151
- bioconda::mapdamage2=2.2.1
5252
- bioconda::bbmap=38.92
53-
- bioconda::bcftools=1.12
53+
- bioconda::bcftools=1.12

nextflow.config

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

286286
// Container slug. Stable releases should specify release tag!
287287
// Developmental code should specify :dev
288-
process.container = 'nfcore/eager:2.4.6'
288+
process.container = 'nfcore/eager:2.4.7'
289289

290290
// Load base.config by default for all pipelines
291291
includeConfig 'conf/base.config'
@@ -415,7 +415,7 @@ manifest {
415415
description = 'A fully reproducible and state-of-the-art ancient DNA analysis pipeline'
416416
mainScript = 'main.nf'
417417
nextflowVersion = '>=20.07.1'
418-
version = '2.4.6'
418+
version = '2.4.7'
419419
}
420420

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

0 commit comments

Comments
 (0)