From 02acf6561aae7a9b40d4bcd5ffb3fdc9da818dd5 Mon Sep 17 00:00:00 2001 From: mirpedrol Date: Mon, 19 Dec 2022 09:45:03 +0100 Subject: [PATCH] bump to 2.7.2 for patch release --- CHANGELOG.md | 6 +----- setup.py | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac0f8a6f6a..923a6c1ca4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # nf-core/tools: Changelog -# v2.8dev +## [v2.7.2 - Mercury Eagle Patch](https://github.com/nf-core/tools/releases/tag/2.7.2) - [2022-12-19] ### Template @@ -12,10 +12,6 @@ - Allow specifying containers in less than three lines ([#2121](https://github.com/nf-core/tools/pull/2121)) - Run prettier after dumping a json schema file ([#2124](https://github.com/nf-core/tools/pull/2124)) -### Modules - -### Subworkflows - ### General - Only check that a pipeline name doesn't contain dashes if the name is provided by prompt of `--name`. Don't check if a template file is used. ([#2123](https://github.com/nf-core/tools/pull/2123)) diff --git a/setup.py b/setup.py index 38f36810b7..cc83e90eed 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -version = "2.8dev" +version = "2.7.2" with open("README.md") as f: readme = f.read()