From 0d978bd1219ff8ddd74cb9662c8988fec61c4039 Mon Sep 17 00:00:00 2001 From: Corwin Kerr Date: Wed, 22 Jul 2026 15:07:55 -0400 Subject: [PATCH 1/2] Update changelog --- changelog.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 5aca225fa..d933f34fa 100644 --- a/changelog.txt +++ b/changelog.txt @@ -7,7 +7,7 @@ The **signac** package follows `semantic versioning `_. Version 2 ========= -[2.4.1] -- xxxx-xx-xx +[2.4.1] -- 2026-07-22 --------------------- Fixed From a73e09e1eb5d6a6d40c712fb9c7a51d656f82747 Mon Sep 17 00:00:00 2001 From: Corwin Kerr Date: Wed, 22 Jul 2026 15:08:21 -0400 Subject: [PATCH 2/2] Bump up to version 2.4.1. --- .bumpversion.cfg | 2 +- CITATION.cff | 2 +- doc/conf.py | 4 ++-- pyproject.toml | 2 +- signac/version.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bca76b274..81fb45d85 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.0 +current_version = 2.4.1 commit = True tag = False message = Bump up to version {new_version}. diff --git a/CITATION.cff b/CITATION.cff index 670682c88..778d35616 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ --- cff-version: "1.0.3" title: signac -version: 2.4.0 +version: 2.4.1 abstract: | The signac framework helps users manage and scale file-based workflows, facilitating data reuse, sharing, and reproducibility. It provides a simple and robust data model to create diff --git a/doc/conf.py b/doc/conf.py index 58fe2437d..7cab6151d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -69,9 +69,9 @@ # built documents. # # The short X.Y version. -version = "2.4.0" +version = "2.4.1" # The full version, including alpha/beta/rc tags. -release = "2.4.0" +release = "2.4.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 9f3b36eb2..171a8cf0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = ["setuptools>=64.0.0"] [project] name = "signac" -version = "2.4.0" +version = "2.4.1" description = "Manage large and heterogeneous data spaces on the file system." readme = "README.md" # Supported versions are determined according to NEP 29. diff --git a/signac/version.py b/signac/version.py index bf11ab010..d598d4961 100644 --- a/signac/version.py +++ b/signac/version.py @@ -4,7 +4,7 @@ """Define signac version.""" -__version__ = "2.4.0" +__version__ = "2.4.1" SCHEMA_VERSION = 2