Skip to content

Commit 5e2917e

Browse files
committedJan 30, 2021
Bump up to version 0.12.0.
1 parent a67de07 commit 5e2917e

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed
 

‎.zenodo.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,5 +156,5 @@
156156
},
157157
"title": "signac-flow",
158158
"upload_type": "software",
159-
"version": "0.11.0"
159+
"version": "0.12.0"
160160
}

‎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.11.0
5+
version: 0.12.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:

‎doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ def __getattr__(cls, name):
7777
# built documents.
7878
#
7979
# The short X.Y version.
80-
version = "0.11.0"
80+
version = "0.12.0"
8181
# The full version, including alpha/beta/rc tags.
82-
release = "0.11.0"
82+
release = "0.12.0"
8383

8484
# The language for content autogenerated by Sphinx. Refer to documentation
8585
# 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.11.0"
6+
__version__ = "0.12.0"
77

88
__all__ = ["__version__"]

‎setup.cfg

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.11.0
2+
current_version = 0.12.0
33
commit = True
44
tag = False
55
message = Bump up to version {new_version}.
@@ -19,9 +19,7 @@ ignore-decorators = "deprecated"
1919
[flake8]
2020
max-line-length = 100
2121
exclude = mistune
22-
# Use select to ignore unwanted flake8 plugins
2322
select = E,F,W
24-
# Specify errors to ignore by default
2523
ignore = E123,E126,E226,E241,E704,W503,W504
2624

2725
[coverage:run]
@@ -43,6 +41,6 @@ omit =
4341
[bumpversion:file:.zenodo.json]
4442

4543
[tool:pytest]
46-
filterwarnings =
44+
filterwarnings =
4745
ignore:.*get_id is deprecated.*:DeprecationWarning
4846
ignore:.*The env argument is deprecated*:DeprecationWarning

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
setup(
3232
name="signac-flow",
33-
version="0.11.0",
33+
version="0.12.0",
3434
packages=find_packages(),
3535
include_package_data=True,
3636
zip_safe=True,

0 commit comments

Comments
 (0)
Please sign in to comment.