Skip to content

Commit f824afe

Browse files
Bump version: 0.5.3 → 0.5.4
1 parent 924b86c commit f824afe

8 files changed

+12
-12
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.3
2+
current_version = 0.5.4
33
commit = True
44
tag = True
55

.zenodo.json

+3-3
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.5.3",
5-
"version": "v0.5.3",
4+
"title": "scikit-hep/pyhf: v0.5.4",
5+
"version": "v0.5.4",
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.5.3",
39+
"identifier": "https://github.com/scikit-hep/pyhf/tree/v0.5.4",
4040
"relation": "isSupplementTo"
4141
}
4242
]

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ BibTeX entry for citation of ``pyhf`` is
282282
283283
@software{pyhf,
284284
author = "{Heinrich, Lukas and Feickert, Matthew and Stark, Giordon}",
285-
title = "{pyhf: v0.5.3}",
286-
version = {0.5.3},
285+
title = "{pyhf: v0.5.4}",
286+
version = {0.5.4},
287287
doi = {10.5281/zenodo.1169739},
288288
url = {https://github.com/scikit-hep/pyhf},
289289
}

codemeta.json

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

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pyhf
3-
version = 0.5.3
3+
version = 0.5.4
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@software{pyhf,
22
author = "{Heinrich, Lukas and Feickert, Matthew and Stark, Giordon}",
3-
title = "{pyhf: v0.5.3}",
4-
version = {0.5.3},
3+
title = "{pyhf: v0.5.4}",
4+
version = {0.5.4},
55
doi = {10.5281/zenodo.1169739},
66
url = {https://github.com/scikit-hep/pyhf},
77
}

src/pyhf/utils.py

+1-1
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 = "{Heinrich, Lukas and Feickert, Matthew and Stark, Giordon}", title = "{pyhf: v0.5.3}", version = {0.5.3}, doi = {10.5281/zenodo.1169739}, url = {https://github.com/scikit-hep/pyhf},}'
145+
'@software{pyhf, author = "{Heinrich, Lukas and Feickert, Matthew and Stark, Giordon}", title = "{pyhf: v0.5.4}", version = {0.5.4}, doi = {10.5281/zenodo.1169739}, url = {https://github.com/scikit-hep/pyhf},}'
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

+1-1
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.5.3'
5+
__version__ = '0.5.4'

0 commit comments

Comments
 (0)