diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 43ad49f84d..9fe9fbc9d6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.17 +current_version = 0.1.0 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index e737fe679a..6b27b164c2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -85,9 +85,9 @@ def setup(app): # built documents. # # The short X.Y version. -version = u'0.0.17' +version = u'0.1.0' # The full version, including alpha/beta/rc tags. -release = u'0.0.17' +release = u'0.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -161,7 +161,7 @@ def setup(app): # The name for this set of Sphinx documents. # " v documentation" by default. # -# html_title = u'pyhf v0.0.17' +# html_title = u'pyhf v0.1.0' # A shorter title for the navigation bar. Default is the same as html_title. # diff --git a/pyhf/version.py b/pyhf/version.py index b5fef292ad..7cf7c415c1 100644 --- a/pyhf/version.py +++ b/pyhf/version.py @@ -2,4 +2,4 @@ # Use semantic versioning (https://semver.org/) # The version number is controlled through bumpversion.cfg -__version__ = '0.0.17' +__version__ = '0.1.0' diff --git a/setup.py b/setup.py index 3eae45c630..3971b8e076 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def _is_test_pypi(): setup( name='pyhf', - version='0.0.17', + version='0.1.0', description='(partial) pure python histfactory implementation', long_description=long_description, long_description_content_type='text/markdown',