From a8578f0c2586a40b1cc1998a49ede1d3bca94aef Mon Sep 17 00:00:00 2001 From: mirpedrol Date: Fri, 20 Dec 2024 10:49:53 +0100 Subject: [PATCH] bump to 3.1.1 for release --- .gitpod.yml | 2 +- CHANGELOG.md | 13 ++----------- setup.py | 2 +- 3 files changed, 4 insertions(+), 13 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index d5948695bf..db31d01bed 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 49386c783e..926535077d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,33 +1,24 @@ # nf-core/tools: Changelog -## v3.1.1dev +## [v3.1.1 - Brass Boxfish Patch](https://github.com/nf-core/tools/releases/tag/3.1.1) - [2024-12-20] ### Template - Use outputs instead of the environment to pass around values between steps in the Download Test Action ([#3351](https://github.com/nf-core/tools/pull/3351)) - Fix pre commit template ([#3358](https://github.com/nf-core/tools/pull/3358)) - Set LICENSE copyright to nf-core community ([#3366](https://github.com/nf-core/tools/pull/3366)) - -### Download +- fix including modules.config ([#3356](https://github.com/nf-core/tools/pull/3356)) ### Linting - Linting of pipeline LICENSE file is a warning to allow for author/maintainer names ([#3366](https://github.com/nf-core/tools/pull/3366)) -### Modules - -- fix including modules.config ([#3356](https://github.com/nf-core/tools/pull/3356)) - -### Subworkflows - ### General - Add missing p ([#3357](https://github.com/nf-core/tools/pull/3357)) - Use `manifest.contributors` names if available, otherwise default to `manifest.author` ([#3362](https://github.com/nf-core/tools/pull/3362)) - Properly parse the names form `manifest.contributors` ([#3364](https://github.com/nf-core/tools/pull/3364)) -### Version updates - ## [v3.1.0 - Brass Boxfish](https://github.com/nf-core/tools/releases/tag/3.1.0) - [2024-12-09] **Highlights** diff --git a/setup.py b/setup.py index b5c5de9a4f..5617520e91 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -version = "3.1.1dev" +version = "3.1.1" with open("README.md") as f: readme = f.read()