Skip to content

Commit d5ffbf2

Browse files
authored
Release/0.29.0 (#833)
* Update changelog * Bump up to version 0.29.0. * Update changelog
1 parent ac6a5ac commit d5ffbf2

File tree

6 files changed

+23
-6
lines changed

6 files changed

+23
-6
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.28.0
2+
current_version = 0.29.0
33
commit = True
44
tag = False
55
message = Bump up to version {new_version}.

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
---
33
cff-version: "1.0.3"
44
title: signac-flow
5-
version: 0.28.0
5+
version: 0.29.0
66
abstract: |
77
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.
88
authors:

changelog.txt

+17
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ Changelog
55
The **signac-flow** package follows `semantic versioning <https://semver.org/>`_.
66
The numbers in brackets denote the related GitHub issue and/or pull request.
77

8+
Version 0.29
9+
============
10+
11+
[0.29.0] -- 2024-03-21
12+
----------------------
13+
14+
Added
15+
+++++
16+
17+
- Added ``memory`` jinja2 block around memory options to override in custom SLURM scripts (#831).
18+
19+
Fixed
20+
+++++
21+
22+
- Always write the nodes parameter on Expanse SBATCH scripts (#827).
23+
- Ensure that a bundle exists in a project before yielding scheduler jobs from it (#758, #832).
24+
825
Version 0.28
926
============
1027

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ def __getattr__(cls, name):
7878
# built documents.
7979
#
8080
# The short X.Y version.
81-
version = "0.28.0"
81+
version = "0.29.0"
8282
# The full version, including alpha/beta/rc tags.
83-
release = "0.28.0"
83+
release = "0.29.0"
8484

8585
# The language for content autogenerated by Sphinx. Refer to documentation
8686
# for a list of supported languages.

flow/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# This software is licensed under the BSD 3-Clause License.
44
"""Define the signac-flow version."""
55

6-
__version__ = "0.28.0"
6+
__version__ = "0.29.0"
77

88
__all__ = ["__version__"]

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ requires = ["setuptools>=64.0.0"]
77

88
[project]
99
name = "signac-flow"
10-
version = "0.28.0"
10+
version = "0.29.0"
1111
description = "Simple workflow management for signac projects."
1212
readme = "README.md"
1313
# Supported versions are determined according to NEP 29.

0 commit comments

Comments
 (0)