Skip to content

Commit

Permalink
Release/0.24.0 (#721)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
b-butler authored Feb 22, 2023
1 parent bd9dfa0 commit 9f361a4
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion → .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.23.0
current_version = 0.24.0
commit = True
tag = False
message = Bump up to version {new_version}.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# with published wheels (typically only possible during testing).
python -m pip install \
-r requirements.txt \
-r requirements-test.txt
-r requirements/requirements-test.txt
- name: Install pypa/build
run:
python -m pip install build
Expand Down
12 changes: 11 additions & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,16 @@
{
"affiliation": "University of Michigan",
"name": "Ignacio Blanco Varela"
},
{
"affiliation": "University of Michigan",
"name": "Melody Zhang",
"orcid": "0000-0001-9788-9958"
},
{
"affiliation": "University of Michigan",
"name": "Brian Puchala",
"orcid": "0000-0002-2461-6614"
}
],
"creators": [
Expand Down Expand Up @@ -184,5 +194,5 @@
},
"title": "signac-flow",
"upload_type": "software",
"version": "0.23.0"
"version": "0.24.0"
}
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---
cff-version: "1.0.3"
title: signac-flow
version: 0.23.0
version: 0.24.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:
Expand Down
8 changes: 7 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@ The numbers in brackets denote the related GitHub issue and/or pull request.
Version 0.24
============

[0.24.0] -- 20xx-xx-xx
[0.24.0] -- 2023-02-22
----------------------

Added
+++++

- Added the OCLF Crusher environment (#708).

Changed
+++++++

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

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = "0.23.0"
version = "0.24.0"
# The full version, including alpha/beta/rc tags.
release = "0.23.0"
release = "0.24.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion flow/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# This software is licensed under the BSD 3-Clause License.
"""Define the signac-flow version."""

__version__ = "0.23.0"
__version__ = "0.24.0"

__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = ["setuptools>=64.0.0"]

[project]
name = "signac-flow"
version = "0.23.0"
version = "0.24.0"
description = "Simple workflow management for signac projects."
readme = "README.md"
# Supported versions are determined according to NEP 29.
Expand Down

0 comments on commit 9f361a4

Please sign in to comment.