Skip to content

Commit

Permalink
Release/0.23.0 (#699)
Browse files Browse the repository at this point in the history
* doc: Update changelog for 0.23.0 release.

* Bump up to version 0.23.0.

* doc: Update 0.23.0 release date.
  • Loading branch information
b-butler authored Dec 9, 2022
1 parent cdeaf3f commit 475b8e4
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,5 +184,5 @@
},
"title": "signac-flow",
"upload_type": "software",
"version": "0.22.0"
"version": "0.23.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.22.0
version: 0.23.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
11 changes: 7 additions & 4 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,20 @@ The numbers in brackets denote the related GitHub issue and/or pull request.
Version 0.23
============

[0.23.0] -- 20xx-xx-xx
[0.23.0] -- 2022-12-09
----------------------

Added
+++++

- Official Python 3.11 support (#697).
- The ``flow.FlowProject.operation`` decorator now has an ``aggregator`` keyword argument: ``@FlowProject.operation(aggregator=aggregator.groupsof(2))`` (#681).
- The ``FlowGroupEntry`` class can be called with a ``directives`` keyword argument: ``FlowGroupEntry(directives={...})`` (#696).

Changed
+++++++

- Deprecated using ``flow.aggregate.aggregator`` as a decorator.
- Deprecated placing ``@FlowProject.pre`` and ``@FlowProject.post`` before the ``FlowProject.operation`` decorator (#690).
- Require ``signac`` version 1.8.0 (#693).
- Deprecated ``alias`` CLI argument to ``flow init`` (#693).
Expand All @@ -29,16 +32,16 @@ Fixed
+++++

- Detecting correct environment on Delta GPU nodes (#682).
- Identical aggregates are used only once in submission and running (#694).
- Identical aggregates are used only once in submission and running (#694, #688).

Removed
+++++++

- ``show_traceback`` from CLI and config (#690).
- Formatting the output of a ``FlowCmdOperation`` (#686).
- ``@flow.cmd`` and ``flow.with_job`` (#686).
- ``@flow.cmd`` and ``flow.with_job`` (#686, #669).
- ``@FlowProject.operation.with_directives`` (#686).
- The ``flow.testing`` module (#691).
- The ``flow.testing`` module (#691, #692).

Version 0.22
============
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.22.0"
version = "0.23.0"
# The full version, including alpha/beta/rc tags.
release = "0.22.0"
release = "0.23.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.22.0"
__version__ = "0.23.0"

__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.22.0
current_version = 0.23.0
commit = True
tag = False
message = Bump up to version {new_version}.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

setup(
name="signac-flow",
version="0.22.0",
version="0.23.0",
packages=find_packages(),
include_package_data=True,
zip_safe=True,
Expand Down

0 comments on commit 475b8e4

Please sign in to comment.