From 0bf3b0ef8139f5ce1a6e22851c86b5b1ea2ef20d Mon Sep 17 00:00:00 2001 From: mashehu Date: Thu, 1 Feb 2024 11:00:36 +0100 Subject: [PATCH] bump to 2.12.1 --- .gitpod.yml | 2 +- CHANGELOG.md | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 39fb530da2..a4f1c17169 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,4 +1,4 @@ -image: nfcore/gitpod:dev +image: nfcore/gitpod:latest tasks: - name: install current state of nf-core/tools and setup pre-commit command: | diff --git a/CHANGELOG.md b/CHANGELOG.md index afa63be89a..568b3fcb16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # nf-core/tools: Changelog -## v2.13dev +## [v2.12.1 - Aluminium Wolf - Patch](https://github.com/nf-core/tools/releases/tag/2.12.1) - [2024-02-01] ### Template @@ -20,7 +20,7 @@ - fix changelog titles ([#2708](https://github.com/nf-core/tools/pull/2708)) - Print relative path not absolute path in logo cmd log output ([#2709](https://github.com/nf-core/tools/pull/2709)) -## [v2.12 - Aluminium Wolf](https://github.com/nf-core/tools/releases/tag/2.11) - [2024-01-29] +## [v2.12 - Aluminium Wolf](https://github.com/nf-core/tools/releases/tag/2.12) - [2024-01-29] ### Template diff --git a/setup.py b/setup.py index e6e7b40762..87677b45c1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -version = "2.13dev" +version = "2.12.1" with open("README.md") as f: readme = f.read()