diff --git a/.zenodo.json b/.zenodo.json index 23151abee..26c9ca6f3 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -161,5 +161,5 @@ }, "title": "signac-flow", "upload_type": "software", - "version": "0.10.0" + "version": "0.10.1" } \ No newline at end of file diff --git a/CITATION.cff b/CITATION.cff index f4cd969e2..cf5c70a2a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ --- cff-version: "1.0.3" title: signac-flow -version: 0.10.0 +version: 0.10.1 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: diff --git a/doc/conf.py b/doc/conf.py index a6dafbfe4..01a894dec 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -72,9 +72,9 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = '0.10.0' +version = '0.10.1' # The full version, including alpha/beta/rc tags. -release = '0.10.0' +release = '0.10.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/flow/version.py b/flow/version.py index 8c824424b..a306afd34 100644 --- a/flow/version.py +++ b/flow/version.py @@ -2,6 +2,6 @@ # All rights reserved. # This software is licensed under the BSD 3-Clause License. -__version__ = '0.10.0' +__version__ = '0.10.1' __all__ = ['__version__'] diff --git a/setup.cfg b/setup.cfg index 343668f99..c67fe32bd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.10.1 commit = True tag = False message = Bump up to version {new_version}. @@ -31,3 +31,4 @@ exclude = mistune,doc/conf.py filterwarnings = ignore:.*get_id is deprecated.*:DeprecationWarning ignore:.*The env argument is deprecated*:DeprecationWarning + diff --git a/setup.py b/setup.py index c12bc7ee1..d7f259128 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( name='signac-flow', - version='0.10.0', + version='0.10.1', packages=find_packages(), include_package_data=True, zip_safe=True,