Skip to content

Commit 2657151

Browse files
authored
Release/0.28.0 (#820)
* Update changelog * Stampede2 wasn't removed in 0.27.0 * Bump up to version 0.28.0. * Update release date
1 parent 779f093 commit 2657151

File tree

6 files changed

+15
-19
lines changed

6 files changed

+15
-19
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.27.0
2+
current_version = 0.28.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.27.0
5+
version: 0.28.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

+9-13
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,32 @@ The numbers in brackets denote the related GitHub issue and/or pull request.
88
Version 0.28
99
============
1010

11-
[next] -- not yet released
12-
--------------------------
11+
[0.28.0] -- 2024-02-19
12+
----------------------
1313

1414
Added
1515
+++++
1616

1717
- Support the ``gpu_mig40`` partition on UMich Great Lakes (#811).
1818

19-
Fixed
20-
+++++
21-
22-
- Generate correct SLURM scripts on SDSC Expanse (#810).
23-
- Suppress warning for regex operation names that match groups (#804).
24-
2519
Changed
2620
+++++++
2721

2822
- Move "Submit command" comment to end of pretend output (#805).
2923
- Improve aggregate registration performance (#818).
3024
- Hide empty "Labels" section in status output when there are no labels (#818).
3125

26+
Fixed
27+
+++++
28+
29+
- Generate correct SLURM scripts on SDSC Expanse (#810).
30+
- Suppress warning for regex operation names that match groups (#804).
31+
3232
Removed
3333
+++++++
3434

3535
- Remove Zenodo (#816).
36+
- Remove stampede2 (#786).
3637

3738
Version 0.27
3839
============
@@ -60,11 +61,6 @@ Fixed
6061
- Restored static output of non-singleton groups (#773, #774).
6162
- Remove warnings by using new ``jsonschema`` API (#787).
6263

63-
Removed
64-
+++++++
65-
66-
- Stampede 2 environment (#786).
67-
6864
Version 0.26
6965
============
7066

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.27.0"
81+
version = "0.28.0"
8282
# The full version, including alpha/beta/rc tags.
83-
release = "0.27.0"
83+
release = "0.28.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.27.0"
6+
__version__ = "0.28.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.27.0"
10+
version = "0.28.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)