diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 23c69f0a..94d7c94a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.28.0 +current_version = 0.29.0 commit = True tag = False message = Bump up to version {new_version}. diff --git a/CITATION.cff b/CITATION.cff index daf0774f..d94a7cb6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ --- cff-version: "1.0.3" title: signac-flow -version: 0.28.0 +version: 0.29.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/changelog.txt b/changelog.txt index 817847b7..26e44dca 100644 --- a/changelog.txt +++ b/changelog.txt @@ -5,6 +5,23 @@ Changelog The **signac-flow** package follows `semantic versioning `_. The numbers in brackets denote the related GitHub issue and/or pull request. +Version 0.29 +============ + +[0.29.0] -- 2024-03-21 +---------------------- + +Added ++++++ + +- Added ``memory`` jinja2 block around memory options to override in custom SLURM scripts (#831). + +Fixed ++++++ + +- Always write the nodes parameter on Expanse SBATCH scripts (#827). +- Ensure that a bundle exists in a project before yielding scheduler jobs from it (#758, #832). + Version 0.28 ============ diff --git a/doc/conf.py b/doc/conf.py index c680befa..78552ece 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.28.0" +version = "0.29.0" # The full version, including alpha/beta/rc tags. -release = "0.28.0" +release = "0.29.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 fb612961..aab6f8a4 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.28.0" +__version__ = "0.29.0" __all__ = ["__version__"] diff --git a/pyproject.toml b/pyproject.toml index 3ff7adbe..12e7def0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = ["setuptools>=64.0.0"] [project] name = "signac-flow" -version = "0.28.0" +version = "0.29.0" description = "Simple workflow management for signac projects." readme = "README.md" # Supported versions are determined according to NEP 29.