Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version: 0.1.0 → 0.1.1 #494

Merged
merged 1 commit into from
Jun 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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