Skip to content

Commit

Permalink
Release/0.22.0 (#680)
Browse files Browse the repository at this point in the history
* doc: Update changelog

* misc: Update zenodo

* Bump up to version 0.22.0.

* doc: Add release date to changelog

* doc: Add release date to changelog and fix style

* doc: Update 0.22.0 changelog release date.

* doc: Improve changelog entry wording.
  • Loading branch information
b-butler authored Oct 14, 2022
1 parent 9217d29 commit d031e1c
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 15 deletions.
6 changes: 5 additions & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@
"affiliation": "University of Delhi (India)",
"name": "Rohan Babbar",
"orcid": "0000-0002-7203-7641"
},
{
"affiliation": "University of Michigan",
"name": "Ignacio Blanco Varela"
}
],
"creators": [
Expand Down Expand Up @@ -180,5 +184,5 @@
},
"title": "signac-flow",
"upload_type": "software",
"version": "0.21.0"
"version": "0.22.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.21.0
version: 0.22.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: 3 additions & 5 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The numbers in brackets denote the related GitHub issue and/or pull request.
Version 0.22
============

[0.22.0] -- 2022-xx-xx
[0.22.0] -- 2022-10-14
----------------------

Added
Expand All @@ -24,10 +24,8 @@ Changed
- Deprecated formatting the output of a ``FlowCmdOperation`` (#666, #630).
- ``@flow.cmd`` and ``flow.with_job`` are deprecated (#679, #669, #665).
- ``@FlowProject.operation.with_directives`` is deprecated (#679, #665).

Changed
+++++++

- Deprecated the ``--show-traceback`` for ``flow``'s CLI ``run`` and ``submit`` commands (#674, #169).
- ``flow`` CLI ``run`` and ``submit`` show tracebacks by default (#674, #169).
- Broke ``TestBidict`` and ``TestTemplateFilters`` into smaller and simpler functions (#626).

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

__all__ = ["__version__"]
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.21.0
current_version = 0.22.0
commit = True
tag = False
message = Bump up to version {new_version}.
Expand Down Expand Up @@ -41,6 +41,6 @@ omit =
[bumpversion:file:.zenodo.json]

[tool:pytest]
filterwarnings =
ignore:.*The env argument is deprecated*:DeprecationWarning
ignore:Returning format strings in a cmd:FutureWarning
filterwarnings =
ignore:.*The env argument is deprecated*:DeprecationWarning
ignore:Returning format strings in a cmd:FutureWarning
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.21.0",
version="0.22.0",
packages=find_packages(),
include_package_data=True,
zip_safe=True,
Expand Down

0 comments on commit d031e1c

Please sign in to comment.