Skip to content

Commit d031e1c

Browse files
authored
Release/0.22.0 (#680)
* 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.
1 parent 9217d29 commit d031e1c

File tree

7 files changed

+17
-15
lines changed

7 files changed

+17
-15
lines changed

.zenodo.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,10 @@
126126
"affiliation": "University of Delhi (India)",
127127
"name": "Rohan Babbar",
128128
"orcid": "0000-0002-7203-7641"
129+
},
130+
{
131+
"affiliation": "University of Michigan",
132+
"name": "Ignacio Blanco Varela"
129133
}
130134
],
131135
"creators": [
@@ -180,5 +184,5 @@
180184
},
181185
"title": "signac-flow",
182186
"upload_type": "software",
183-
"version": "0.21.0"
187+
"version": "0.22.0"
184188
}

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.21.0
5+
version: 0.22.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

+3-5
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.22
99
============
1010

11-
[0.22.0] -- 2022-xx-xx
11+
[0.22.0] -- 2022-10-14
1212
----------------------
1313

1414
Added
@@ -24,10 +24,8 @@ Changed
2424
- Deprecated formatting the output of a ``FlowCmdOperation`` (#666, #630).
2525
- ``@flow.cmd`` and ``flow.with_job`` are deprecated (#679, #669, #665).
2626
- ``@FlowProject.operation.with_directives`` is deprecated (#679, #665).
27-
28-
Changed
29-
+++++++
30-
27+
- Deprecated the ``--show-traceback`` for ``flow``'s CLI ``run`` and ``submit`` commands (#674, #169).
28+
- ``flow`` CLI ``run`` and ``submit`` show tracebacks by default (#674, #169).
3129
- Broke ``TestBidict`` and ``TestTemplateFilters`` into smaller and simpler functions (#626).
3230

3331
Version 0.21

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.21.0"
81+
version = "0.22.0"
8282
# The full version, including alpha/beta/rc tags.
83-
release = "0.21.0"
83+
release = "0.22.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.21.0"
6+
__version__ = "0.22.0"
77

88
__all__ = ["__version__"]

setup.cfg

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.21.0
2+
current_version = 0.22.0
33
commit = True
44
tag = False
55
message = Bump up to version {new_version}.
@@ -41,6 +41,6 @@ omit =
4141
[bumpversion:file:.zenodo.json]
4242

4343
[tool:pytest]
44-
filterwarnings =
45-
ignore:.*The env argument is deprecated*:DeprecationWarning
46-
ignore:Returning format strings in a cmd:FutureWarning
44+
filterwarnings =
45+
ignore:.*The env argument is deprecated*:DeprecationWarning
46+
ignore:Returning format strings in a cmd:FutureWarning

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
setup(
3434
name="signac-flow",
35-
version="0.21.0",
35+
version="0.22.0",
3636
packages=find_packages(),
3737
include_package_data=True,
3838
zip_safe=True,

0 commit comments

Comments
 (0)