Skip to content

Commit de5c3db

Browse files
authored
Merge pull request #1563 from nf-core/pre_3.19.0_bumps
Version bumps ahead of 3.19.0 release
2 parents 1323533 + 5e540d8 commit de5c3db

16 files changed

+342
-50
lines changed

CHANGELOG.md

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

6-
# 3.19.0dev - xxxx-xx-xx
6+
# 3.19.0 - 2025-06-06
77

88
### Credits
99

@@ -37,6 +37,7 @@ Special thanks to the following for their contributions to the release:
3737
- [PR #1556](https://github.com/nf-core/rnaseq/pull/1556) - Update index docs to remove references to 'indexing only mode'
3838
- [PR #1558](https://github.com/nf-core/rnaseq/pull/1558) - Remove patches and bump modules for ARM compat
3939
- [PR #1560](https://github.com/nf-core/rnaseq/pull/1560) - General modules update, include updating subworkflows for stats fixes
40+
- [PR #1563](https://github.com/nf-core/rnaseq/pull/1563) - Version bumps ahead of 3.19.0 release
4041

4142
# 3.18.0 - 2024-12-19
4243

nextflow.config

Lines changed: 50 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -346,29 +346,68 @@ manifest {
346346
name = 'nf-core/rnaseq'
347347
author = """Harshil Patel, Phil Ewels, Rickard Hammarén""" // The author field is deprecated from Nextflow version 24.10.0, use contributors instead
348348
contributors = [
349-
// TODO nf-core: Update the field with the details of the contributors to your pipeline. New with Nextflow version 24.10.0
350349
[
351350
name: 'Harshil Patel',
352-
affiliation: '',
351+
affiliation: 'Seqera',
353352
email: '',
354-
github: '',
355-
contribution: [], // List of contribution types ('author', 'maintainer' or 'contributor')
353+
github: '@drpatelh',
354+
contribution: ['author'], // List of contribution types ('author', 'maintainer' or 'contributor')
355+
orcid: '0000-0003-2707-7940'
356+
],
357+
[
358+
name: 'Jonathan Manning',
359+
affiliation: 'Seqera',
360+
email: '',
361+
github: '@pinin4fjords',
362+
contribution: ['maintainer', 'contributor'], // List of contribution types ('author', 'maintainer' or 'contributor')
363+
orcid: '0000-0002-3483-8456'
364+
],
365+
[
366+
name: 'Maxime Garcia',
367+
affiliation: 'Seqera',
368+
email: '',
369+
github: '@maxulysse',
370+
contribution: ['contributor', 'maintainer'], // List of contribution types ('author', 'maintainer' or 'contributor')
356371
orcid: ''
357372
],
358373
[
359374
name: 'Phil Ewels',
360-
affiliation: '',
375+
affiliation: 'Seqera',
361376
email: '',
362-
github: '',
363-
contribution: [], // List of contribution types ('author', 'maintainer' or 'contributor')
377+
github: '@ewels',
378+
contribution: ['author'], // List of contribution types ('author', 'maintainer' or 'contributor')
364379
orcid: ''
365380
],
381+
[
382+
name: 'Alexander Peltzer',
383+
affiliation: 'Boehringer Ingelheim',
384+
email: '',
385+
github: '@apeltzer',
386+
contribution: ['contributor'], // List of contribution types ('author', 'maintainer' or 'contributor')
387+
orcid: '0000-0002-6503-2180'
388+
],
366389
[
367390
name: 'Rickard Hammarén',
368-
affiliation: '',
391+
affiliation: 'Scilifelab Data Centre',
392+
email: '',
393+
github: '@Hammarn',
394+
contribution: ['author'], // List of contribution types ('author', 'maintainer' or 'contributor')
395+
orcid: '0000-0001-9017-591X'
396+
],
397+
[
398+
name: 'Olga Botvinnik',
399+
affiliation: 'Seanome',
400+
email: '',
401+
github: '@olgabot',
402+
contribution: ['contributor'], // List of contribution types ('author', 'maintainer' or 'contributor')
403+
orcid: '0000-0003-4412-7970'
404+
],
405+
[
406+
name: 'Adam Talbot',
407+
affiliation: 'Seqera',
369408
email: '',
370-
github: '',
371-
contribution: [], // List of contribution types ('author', 'maintainer' or 'contributor')
409+
github: '@adamrtalbot',
410+
contribution: ['contributor'], // List of contribution types ('author', 'maintainer' or 'contributor')
372411
orcid: ''
373412
],
374413
]
@@ -377,7 +416,7 @@ manifest {
377416
mainScript = 'main.nf'
378417
defaultBranch = 'master'
379418
nextflowVersion = '!>=24.04.2'
380-
version = '3.19.0dev'
419+
version = '3.19.0'
381420
doi = 'https://doi.org/10.5281/zenodo.1400710'
382421
}
383422

ro-crate-metadata.json

Lines changed: 265 additions & 13 deletions
Large diffs are not rendered by default.

tests/default.nf.test.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"untar": 1.34
4848
},
4949
"Workflow": {
50-
"nf-core/rnaseq": "v3.19.0dev"
50+
"nf-core/rnaseq": "v3.19.0"
5151
}
5252
},
5353
[
@@ -245,7 +245,7 @@
245245
"untar": 1.34
246246
},
247247
"Workflow": {
248-
"nf-core/rnaseq": "v3.19.0dev"
248+
"nf-core/rnaseq": "v3.19.0"
249249
}
250250
},
251251
[

tests/featurecounts_group_type.nf.test.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"untar": 1.34
4848
},
4949
"Workflow": {
50-
"nf-core/rnaseq": "v3.19.0dev"
50+
"nf-core/rnaseq": "v3.19.0"
5151
}
5252
},
5353
[
@@ -239,7 +239,7 @@
239239
"untar": 1.34
240240
},
241241
"Workflow": {
242-
"nf-core/rnaseq": "v3.19.0dev"
242+
"nf-core/rnaseq": "v3.19.0"
243243
}
244244
},
245245
[

tests/hisat2.nf.test.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"untar": 1.34
4949
},
5050
"Workflow": {
51-
"nf-core/rnaseq": "v3.19.0dev"
51+
"nf-core/rnaseq": "v3.19.0"
5252
}
5353
},
5454
[
@@ -242,7 +242,7 @@
242242
"untar": 1.34
243243
},
244244
"Workflow": {
245-
"nf-core/rnaseq": "v3.19.0dev"
245+
"nf-core/rnaseq": "v3.19.0"
246246
}
247247
},
248248
[

tests/kallisto.nf.test.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"untar": 1.34
6464
},
6565
"Workflow": {
66-
"nf-core/rnaseq": "v3.19.0dev"
66+
"nf-core/rnaseq": "v3.19.0"
6767
}
6868
},
6969
[
@@ -320,7 +320,7 @@
320320
"untar": 1.34
321321
},
322322
"Workflow": {
323-
"nf-core/rnaseq": "v3.19.0dev"
323+
"nf-core/rnaseq": "v3.19.0"
324324
}
325325
},
326326
[

tests/min_mapped_reads.nf.test.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
"untar": 1.34
142142
},
143143
"Workflow": {
144-
"nf-core/rnaseq": "v3.19.0dev"
144+
"nf-core/rnaseq": "v3.19.0"
145145
}
146146
},
147147
[
@@ -1241,7 +1241,7 @@
12411241
"untar": 1.34
12421242
},
12431243
"Workflow": {
1244-
"nf-core/rnaseq": "v3.19.0dev"
1244+
"nf-core/rnaseq": "v3.19.0"
12451245
}
12461246
},
12471247
[

tests/nofasta.nf.test.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"bioconductor-tximeta": "1.20.1"
5353
},
5454
"Workflow": {
55-
"nf-core/rnaseq": "v3.19.0dev"
55+
"nf-core/rnaseq": "v3.19.0"
5656
}
5757
},
5858
[

tests/remove_ribo_rna.nf.test.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
"untar": 1.34
148148
},
149149
"Workflow": {
150-
"nf-core/rnaseq": "v3.19.0dev"
150+
"nf-core/rnaseq": "v3.19.0"
151151
}
152152
},
153153
[
@@ -1453,7 +1453,7 @@
14531453
"untar": 1.34
14541454
},
14551455
"Workflow": {
1456-
"nf-core/rnaseq": "v3.19.0dev"
1456+
"nf-core/rnaseq": "v3.19.0"
14571457
}
14581458
},
14591459
[

0 commit comments

Comments
 (0)