Skip to content

Commit 9f361a4

Browse files
authored
Release/0.24.0 (#721)
* doc: Update changelog for 0.24.0 release. * misc: Update zenodo.json * fix: Fix name of bumpversion configuration file * Bump up to version 0.24.0. * ci: Fix path to requirements-test.txt
1 parent bd9dfa0 commit 9f361a4

8 files changed

+25
-9
lines changed

.bumpversion .bumpversion.cfg

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

.github/workflows/publish-packages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# with published wheels (typically only possible during testing).
3232
python -m pip install \
3333
-r requirements.txt \
34-
-r requirements-test.txt
34+
-r requirements/requirements-test.txt
3535
- name: Install pypa/build
3636
run:
3737
python -m pip install build

.zenodo.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,16 @@
130130
{
131131
"affiliation": "University of Michigan",
132132
"name": "Ignacio Blanco Varela"
133+
},
134+
{
135+
"affiliation": "University of Michigan",
136+
"name": "Melody Zhang",
137+
"orcid": "0000-0001-9788-9958"
138+
},
139+
{
140+
"affiliation": "University of Michigan",
141+
"name": "Brian Puchala",
142+
"orcid": "0000-0002-2461-6614"
133143
}
134144
],
135145
"creators": [
@@ -184,5 +194,5 @@
184194
},
185195
"title": "signac-flow",
186196
"upload_type": "software",
187-
"version": "0.23.0"
197+
"version": "0.24.0"
188198
}

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.23.0
5+
version: 0.24.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

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

11-
[0.24.0] -- 20xx-xx-xx
11+
[0.24.0] -- 2023-02-22
1212
----------------------
1313

14+
Added
15+
+++++
16+
17+
- Added the OCLF Crusher environment (#708).
18+
1419
Changed
1520
+++++++
1621

22+
- Switched to a pyproject.toml based build (#704).
1723
- Placing ``@FlowProject.pre`` and ``@FlowProject.post`` before the ``FlowProject.operation`` decorator raises an error (#700).
1824
- Updated CI to use GitHub Actions (#698).
1925

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.23.0"
81+
version = "0.24.0"
8282
# The full version, including alpha/beta/rc tags.
83-
release = "0.23.0"
83+
release = "0.24.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.23.0"
6+
__version__ = "0.24.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.23.0"
10+
version = "0.24.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)