From 0a5e3661de0f521995d43c17afd14317fb05ed54 Mon Sep 17 00:00:00 2001 From: Brandon Butler Date: Mon, 15 Jan 2024 10:44:15 -0500 Subject: [PATCH 1/3] doc: Update changelog --- changelog.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index ee068cb97..8b18b5ff2 100644 --- a/changelog.txt +++ b/changelog.txt @@ -8,7 +8,7 @@ The numbers in brackets denote the related GitHub issue and/or pull request. Version 0.27 ============ -[0.27.0] -- 202x-xx-xx +[0.27.0] -- 2024-01-15 ---------------------- Added @@ -20,13 +20,15 @@ Added Changed +++++++ - The Stampede2 environment is deprecated (#798). +- Deprecate the current keys for submission/execution directives (#792). - Show the "Using environment configuration:" message only in verbose output (#776). Fixed +++++ +- ``srun`` invocation on Great-Lakes (#779). - Restored static output of non-singleton groups (#773, #774). -- Remove warnings by using new `jsonschema` API (#787). +- Remove warnings by using new ``jsonschema`` API (#787). Version 0.26 ============ From 60fc9eec4ab8ee4752c81f34c686b76c5467a1db Mon Sep 17 00:00:00 2001 From: Brandon Butler Date: Mon, 15 Jan 2024 10:55:16 -0500 Subject: [PATCH 2/3] Bump up to version 0.27.0. --- .bumpversion.cfg | 2 +- .zenodo.json | 2 +- CITATION.cff | 2 +- doc/conf.py | 4 ++-- flow/version.py | 2 +- pyproject.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 841fa4dc0..796728f43 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.26.1 +current_version = 0.27.0 commit = True tag = False message = Bump up to version {new_version}. diff --git a/.zenodo.json b/.zenodo.json index 144d3785e..384aafb97 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -194,5 +194,5 @@ }, "title": "signac-flow", "upload_type": "software", - "version": "0.26.1" + "version": "0.27.0" } diff --git a/CITATION.cff b/CITATION.cff index 953334aeb..813f8f4bb 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ --- cff-version: "1.0.3" title: signac-flow -version: 0.26.1 +version: 0.27.0 abstract: | The signac-flow tool provides the basic components to set up simple to complex workflows for projects as part of the signac framework. That includes the definition of data pipelines, execution of data space operations and the submission of operations to high-performance super computers. authors: diff --git a/doc/conf.py b/doc/conf.py index 03152f58c..f8f564afd 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -78,9 +78,9 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = "0.26.1" +version = "0.27.0" # The full version, including alpha/beta/rc tags. -release = "0.26.1" +release = "0.27.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/flow/version.py b/flow/version.py index b29744dbe..787f77785 100644 --- a/flow/version.py +++ b/flow/version.py @@ -3,6 +3,6 @@ # This software is licensed under the BSD 3-Clause License. """Define the signac-flow version.""" -__version__ = "0.26.1" +__version__ = "0.27.0" __all__ = ["__version__"] diff --git a/pyproject.toml b/pyproject.toml index 3dba9f4fd..22fca4256 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = ["setuptools>=64.0.0"] [project] name = "signac-flow" -version = "0.26.1" +version = "0.27.0" description = "Simple workflow management for signac projects." readme = "README.md" # Supported versions are determined according to NEP 29. From 81f959c00ec88d77d6075bd0756d3a6d4f6fe147 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 15 Jan 2024 10:25:10 -0600 Subject: [PATCH 3/3] Add blank line. --- changelog.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.txt b/changelog.txt index 8b18b5ff2..0bb901c9f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -19,6 +19,7 @@ Added Changed +++++++ + - The Stampede2 environment is deprecated (#798). - Deprecate the current keys for submission/execution directives (#792). - Show the "Using environment configuration:" message only in verbose output (#776).