From e7b201c5c291ea0cd5a9ef678507d53edc5ced3d Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Thu, 14 Nov 2019 12:20:05 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.2=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 ++- docs/conf.py | 6 +++--- setup.py | 2 +- src/pyhf/version.py | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 33d2b62e25..61db169e01 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 0.2.0 commit = True tag = True @@ -8,3 +8,4 @@ tag = True [bumpversion:file:src/pyhf/version.py] [bumpversion:file:docs/conf.py] + diff --git a/docs/conf.py b/docs/conf.py index 1032b08709..e7d561ad92 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.1.2' +version = u'0.2.0' # The full version, including alpha/beta/rc tags. -release = u'0.1.2' +release = u'0.2.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.1.2' +# html_title = u'pyhf v0.2.0' # A shorter title for the navigation bar. Default is the same as html_title. # diff --git a/setup.py b/setup.py index 38ef9b1762..c1eee1afbf 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def _is_test_pypi(): setup( name='pyhf', - version='0.1.2', + version='0.2.0', description='(partial) pure python histfactory implementation', long_description=long_description, long_description_content_type='text/markdown', diff --git a/src/pyhf/version.py b/src/pyhf/version.py index f2a8f01c8e..a9315a3ff2 100644 --- a/src/pyhf/version.py +++ b/src/pyhf/version.py @@ -2,4 +2,4 @@ # Use semantic versioning (https://semver.org/) # The version number is controlled through bumpversion.cfg -__version__ = '0.1.2' +__version__ = '0.2.0'