Skip to content

Commit abd7138

Browse files
b-butlerbdice
andauthored
Release/0.27.0 (#801)
* doc: Update changelog * Bump up to version 0.27.0. * Add blank line. --------- Co-authored-by: Bradley Dice <[email protected]>
1 parent 01ec415 commit abd7138

7 files changed

+12
-9
lines changed

.bumpversion.cfg

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

.zenodo.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,5 +194,5 @@
194194
},
195195
"title": "signac-flow",
196196
"upload_type": "software",
197-
"version": "0.26.1"
197+
"version": "0.27.0"
198198
}

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.26.1
5+
version: 0.27.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

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The numbers in brackets denote the related GitHub issue and/or pull request.
88
Version 0.27
99
============
1010

11-
[0.27.0] -- 202x-xx-xx
11+
[0.27.0] -- 2024-01-15
1212
----------------------
1313

1414
Added
@@ -19,14 +19,17 @@ Added
1919

2020
Changed
2121
+++++++
22+
2223
- The Stampede2 environment is deprecated (#798).
24+
- Deprecate the current keys for submission/execution directives (#792).
2325
- Show the "Using environment configuration:" message only in verbose output (#776).
2426

2527
Fixed
2628
+++++
2729

30+
- ``srun`` invocation on Great-Lakes (#779).
2831
- Restored static output of non-singleton groups (#773, #774).
29-
- Remove warnings by using new `jsonschema` API (#787).
32+
- Remove warnings by using new ``jsonschema`` API (#787).
3033

3134
Version 0.26
3235
============

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