Skip to content

Commit 2fbc4bd

Browse files
committed
Bump version: 0.6.0 → 0.6.1
Triggered by #1357 via GitHub Actions.
1 parent 5529eb7 commit 2fbc4bd

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.0
2+
current_version = 0.6.1
33
commit = True
44
tag = True
55

.zenodo.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"description": "pure-Python HistFactory implementation with tensors and autodiff",
33
"license": "Apache-2.0",
4-
"title": "scikit-hep/pyhf: v0.6.0",
5-
"version": "v0.6.0",
4+
"title": "scikit-hep/pyhf: v0.6.1",
5+
"version": "v0.6.1",
66
"upload_type": "software",
77
"creators": [
88
{
@@ -36,7 +36,7 @@
3636
"related_identifiers": [
3737
{
3838
"scheme": "url",
39-
"identifier": "https://github.com/scikit-hep/pyhf/tree/v0.6.0",
39+
"identifier": "https://github.com/scikit-hep/pyhf/tree/v0.6.1",
4040
"relation": "isSupplementTo"
4141
}
4242
]

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ the preferred BibTeX entry for citation of ``pyhf`` includes both the
290290
291291
@software{pyhf,
292292
author = {Lukas Heinrich and Matthew Feickert and Giordon Stark},
293-
title = "{pyhf: v0.6.0}",
294-
version = {0.6.0},
293+
title = "{pyhf: v0.6.1}",
294+
version = {0.6.1},
295295
doi = {10.5281/zenodo.1169739},
296296
url = {https://github.com/scikit-hep/pyhf},
297297
}
@@ -356,7 +356,7 @@ and grant `OAC-1450377 <https://www.nsf.gov/awardsearch/showAward?AWD_ID=1450377
356356
:alt: pre-commit.ci status
357357
.. |Code style: black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
358358
:target: https://github.com/psf/black
359-
.. |Docs from latest| image:: https://img.shields.io/badge/docs-v0.6.0-blue.svg
359+
.. |Docs from latest| image:: https://img.shields.io/badge/docs-v0.6.1-blue.svg
360360
:target: https://pyhf.readthedocs.io/
361361
.. |Docs from master| image:: https://img.shields.io/badge/docs-master-blue.svg
362362
:target: https://scikit-hep.github.io/pyhf

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"@type": "SoftwareSourceCode",
77
"identifier": "pyhf",
88
"name": "pyhf",
9-
"version": "0.6.0",
9+
"version": "0.6.1",
1010
"description": "pure-Python HistFactory implementation with tensors and autodiff",
1111
"license": "Apache, OSI Approved :: Apache Software License",
1212
"author": [

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pyhf
3-
version = 0.6.0
3+
version = 0.6.1
44
description = pure-Python HistFactory implementation with tensors and autodiff
55
long_description = file: README.rst
66
long_description_content_type = text/x-rst

src/pyhf/data/citation.bib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@software{pyhf,
22
author = {Lukas Heinrich and Matthew Feickert and Giordon Stark},
3-
title = "{pyhf: v0.6.0}",
4-
version = {0.6.0},
3+
title = "{pyhf: v0.6.1}",
4+
version = {0.6.1},
55
doi = {10.5281/zenodo.1169739},
66
url = {https://github.com/scikit-hep/pyhf},
77
}

src/pyhf/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def citation(oneline=False):
142142
143143
>>> import pyhf
144144
>>> pyhf.utils.citation(True)
145-
'@software{pyhf, author = {Lukas Heinrich and Matthew Feickert and Giordon Stark}, title = "{pyhf: v0.6.0}", version = {0.6.0}, doi = {10.5281/zenodo.1169739}, url = {https://github.com/scikit-hep/pyhf},}@article{pyhf_joss, doi = {10.21105/joss.02823}, url = {https://doi.org/10.21105/joss.02823}, year = {2021}, publisher = {The Open Journal}, volume = {6}, number = {58}, pages = {2823}, author = {Lukas Heinrich and Matthew Feickert and Giordon Stark and Kyle Cranmer}, title = {pyhf: pure-Python implementation of HistFactory statistical models}, journal = {Journal of Open Source Software}}'
145+
'@software{pyhf, author = {Lukas Heinrich and Matthew Feickert and Giordon Stark}, title = "{pyhf: v0.6.1}", version = {0.6.1}, doi = {10.5281/zenodo.1169739}, url = {https://github.com/scikit-hep/pyhf},}@article{pyhf_joss, doi = {10.21105/joss.02823}, url = {https://doi.org/10.21105/joss.02823}, year = {2021}, publisher = {The Open Journal}, volume = {6}, number = {58}, pages = {2823}, author = {Lukas Heinrich and Matthew Feickert and Giordon Stark and Kyle Cranmer}, title = {pyhf: pure-Python implementation of HistFactory statistical models}, journal = {Journal of Open Source Software}}'
146146
147147
Keyword Args:
148148
oneline (:obj:`bool`): Whether to provide citation with new lines (default) or as a one-liner.

src/pyhf/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
# Use semantic versioning (https://semver.org/)
44
# The version number is controlled through bumpversion.cfg
5-
__version__ = '0.6.0'
5+
__version__ = '0.6.1'

0 commit comments

Comments
 (0)