Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.1.1 (#494)
Browse files Browse the repository at this point in the history
v0.1.1 brings the following new features
- CLI: pyhf inspect, configurable optimizer (and options), configurable test statistic
- docs: introduction, likelihood specification
- schema: semantic versioning, finalized v1.0.0
- hifi: compatibility mode via qtilde test statistic

The following user-facing bugs were fixed since v0.1.0:
- CLI was not running correctly without pyhf[xmlio]
- writexml divided out sample data incorrectly when sample data is zero
  • Loading branch information
kratsg authored Jun 27, 2019
1 parent 0fe9cbc commit 64721a7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1
commit = True
tag = True

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ def setup(app):
# built documents.
#
# The short X.Y version.
version = u'0.1.0'
version = u'0.1.1'
# The full version, including alpha/beta/rc tags.
release = u'0.1.0'
release = u'0.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -161,7 +161,7 @@ def setup(app):
# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = u'pyhf v0.1.0'
# html_title = u'pyhf v0.1.1'

# A shorter title for the navigation bar. Default is the same as html_title.
#
Expand Down
2 changes: 1 addition & 1 deletion pyhf/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# Use semantic versioning (https://semver.org/)
# The version number is controlled through bumpversion.cfg
__version__ = '0.1.0'
__version__ = '0.1.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def _is_test_pypi():

setup(
name='pyhf',
version='0.1.0',
version='0.1.1',
description='(partial) pure python histfactory implementation',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 64721a7

Please sign in to comment.