Skip to content

Commit

Permalink
Bump up to version 0.12.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Jan 30, 2021
1 parent a67de07 commit 5e2917e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,5 @@
},
"title": "signac-flow",
"upload_type": "software",
"version": "0.11.0"
"version": "0.12.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.11.0
version: 0.12.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
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = "0.11.0"
version = "0.12.0"
# The full version, including alpha/beta/rc tags.
release = "0.11.0"
release = "0.12.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.11.0"
__version__ = "0.12.0"

__all__ = ["__version__"]
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.0
current_version = 0.12.0
commit = True
tag = False
message = Bump up to version {new_version}.
Expand All @@ -19,9 +19,7 @@ ignore-decorators = "deprecated"
[flake8]
max-line-length = 100
exclude = mistune
# Use select to ignore unwanted flake8 plugins
select = E,F,W
# Specify errors to ignore by default
ignore = E123,E126,E226,E241,E704,W503,W504

[coverage:run]
Expand All @@ -43,6 +41,6 @@ omit =
[bumpversion:file:.zenodo.json]

[tool:pytest]
filterwarnings =
filterwarnings =
ignore:.*get_id is deprecated.*:DeprecationWarning
ignore:.*The env argument is deprecated*:DeprecationWarning
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

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

0 comments on commit 5e2917e

Please sign in to comment.