From 15718ae3446622fdecfd803911def47b31d9cca5 Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Tue, 15 Mar 2022 22:26:47 +0100 Subject: [PATCH] Bump to v2.4dev --- .github/RELEASE_CHECKLIST.md | 4 +++- CHANGELOG.md | 10 +++++++++- setup.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/RELEASE_CHECKLIST.md b/.github/RELEASE_CHECKLIST.md index 1f9a8b2eb4..e5b670c561 100644 --- a/.github/RELEASE_CHECKLIST.md +++ b/.github/RELEASE_CHECKLIST.md @@ -9,7 +9,9 @@ 7. Make sure all CI tests are passing again (additional tests are run on PRs to `master`) 8. Request review (2 approvals required) 9. Merge the PR into `master` -10. Once CI tests on commit have passed, create a new release copying the `CHANGELOG` for that release into the description section. +10. Wait for CI tests on the commit to passed +11. (Optional but a good idea) Run a manual sync on `nf-core/testpipeline` and check that CI is passing on the resulting PR. +12. Create a new release copying the `CHANGELOG` for that release into the description section. ## After release diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f7a5ddd8f..87ea3eae15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # nf-core/tools: Changelog +## v2.4dev + +### Template + +### General + +### Modules + ## [v2.3 - Mercury Vulture](https://github.com/nf-core/tools/releases/tag/2.3) - [2022-03-15] ### Template @@ -17,7 +25,7 @@ * Add optional loading of of pipeline-specific institutional configs to `nextflow.config` * Make `--outdir` a mandatory parameter ([nf-core/tools#1415](https://github.com/nf-core/tools/issues/1415)) -## General +### General * Updated `nf-core download` to work with latest DSL2 syntax for containers ([#1379](https://github.com/nf-core/tools/issues/1379)) * Made `nf-core modules create` detect repository type with explicit `.nf-core.yml` instead of random readme stuff ([#1391](https://github.com/nf-core/tools/pull/1391)) diff --git a/setup.py b/setup.py index b4acd45832..5fda0ae5be 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages -version = "2.3" +version = "2.4dev" with open("README.md") as f: readme = f.read()