From 6fb78b820d6c9376617ff25f09ad36fc569793b0 Mon Sep 17 00:00:00 2001 From: mashehu Date: Thu, 16 Oct 2025 17:40:47 +0200 Subject: [PATCH 1/2] bump version to 3.5.0dev --- .devcontainer/devcontainer.json | 2 +- CHANGELOG.md | 12 ++++++++++++ setup.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index add023cfa8..f6d47fc237 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "nfcore", - "image": "nfcore/devcontainer:latest", + "image": "nfcore/devcontainer:dev", "remoteEnv": { // Workspace path on the host for mounting with docker-outside-of-docker diff --git a/CHANGELOG.md b/CHANGELOG.md index 82a883e251..82602513ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # nf-core/tools: Changelog +## v3.5.0dev + +### General + +### Template + +### Linting + +### Modules + +### Subworkflows + ## [v3.4.1 - Ducol Dingo Patch 1](https://github.com/nf-core/tools/releases/tag/3.4.1) - [2025-10-16] ### Template diff --git a/setup.py b/setup.py index bb5f81090b..d677f5ddd7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -version = "3.4.1" +version = "3.5.0dev" with open("README.md") as f: readme = f.read() From 72c1b9efe97599c8a90af45847909d863be450f6 Mon Sep 17 00:00:00 2001 From: mashehu Date: Tue, 21 Oct 2025 21:52:57 +0200 Subject: [PATCH 2/2] fix release announcement action --- .../.github/workflows/release-announcements.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nf_core/pipeline-template/.github/workflows/release-announcements.yml b/nf_core/pipeline-template/.github/workflows/release-announcements.yml index cee591bdaa..5bba0dba61 100644 --- a/nf_core/pipeline-template/.github/workflows/release-announcements.yml +++ b/nf_core/pipeline-template/.github/workflows/release-announcements.yml @@ -15,7 +15,7 @@ jobs: echo "topics=$(curl -s https://nf-co.re/pipelines.json | jq -r '.remote_workflows[] | select(.full_name == "${{ github.repository }}") | .topics[]' | awk '{print "#"$0}' | tr '\n' ' ')" | sed 's/-//g' >> $GITHUB_OUTPUT - name: get description - id: get_topics + id: get_description run: | echo "description=$(curl -s https://nf-co.re/pipelines.json | jq -r '.remote_workflows[] | select(.full_name == "${{ github.repository }}") | .description' >> $GITHUB_OUTPUT