From 58abca3a70b948494cecbcf7da332355e61d09ff Mon Sep 17 00:00:00 2001 From: Brandon Butler Date: Fri, 21 Apr 2023 16:31:42 -0400 Subject: [PATCH] Release/0.25.1 (#742) * doc: Update changelog. * Bump up to version 0.25.1. --- .bumpversion.cfg | 2 +- .zenodo.json | 2 +- CITATION.cff | 2 +- changelog.txt | 3 ++- doc/conf.py | 4 ++-- flow/version.py | 2 +- pyproject.toml | 2 +- 7 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2b05d6292..2c5d512ce 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.25.0 +current_version = 0.25.1 commit = True tag = False message = Bump up to version {new_version}. diff --git a/.zenodo.json b/.zenodo.json index 21c1bac11..9673db661 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -194,5 +194,5 @@ }, "title": "signac-flow", "upload_type": "software", - "version": "0.25.0" + "version": "0.25.1" } diff --git a/CITATION.cff b/CITATION.cff index e451e5315..67c405c3c 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ --- cff-version: "1.0.3" title: signac-flow -version: 0.25.0 +version: 0.25.1 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/changelog.txt b/changelog.txt index 1657aefd3..4544d1551 100644 --- a/changelog.txt +++ b/changelog.txt @@ -8,12 +8,13 @@ The numbers in brackets denote the related GitHub issue and/or pull request. Version 0.25 ============ -[0.25.1] -- 2023-XX-XX +[0.25.1] -- 2023-04-21 ---------------------- Fixed +++++ +- Delta hostname detection (#740). - Fix filter argument (#737, #738). Removed diff --git a/doc/conf.py b/doc/conf.py index aec38945c..2be98a766 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.25.0" +version = "0.25.1" # The full version, including alpha/beta/rc tags. -release = "0.25.0" +release = "0.25.1" # 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 e1a131ee4..47b288091 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.25.0" +__version__ = "0.25.1" __all__ = ["__version__"] diff --git a/pyproject.toml b/pyproject.toml index 02e5d258a..f6a6d5f33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = ["setuptools>=64.0.0"] [project] name = "signac-flow" -version = "0.25.0" +version = "0.25.1" description = "Simple workflow management for signac projects." readme = "README.md" # Supported versions are determined according to NEP 29.