Skip to content

Commit a87c400

Browse files
committed
Bump version to v1.0.30
1 parent f8ca1c5 commit a87c400

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGES.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
Release notes
33
=============
44

5-
Version 1.0.29, June 2022
5+
Version 1.0.30, June 2022
66
-------------------------
77
* Fix for machine-level rounding error, which can show up on in num_bins() call of Bin histogram.
8+
* supersedes broken v1.0.29
89

910
Version 1.0.28, June 2022
1011
-------------------------

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ PyCUDA is available, they can also be filled from Numpy arrays by JIT-compiling
2020

2121
This Python implementation of histogrammar been tested to guarantee compatibility with its Scala implementation.
2222

23-
Latest Python release: v1.0.29 (June 2022).
23+
Latest Python release: v1.0.30 (June 2022).
2424

2525
Announcements
2626
=============

histogrammar/version.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import re
44

55
name = "histogrammar"
6-
__version__ = "1.0.28"
7-
version = "1.0.28"
8-
full_version = "1.0.28"
6+
__version__ = "1.0.30"
7+
version = "1.0.30"
8+
full_version = "1.0.30"
99
release = True
1010

1111
version_info = tuple(re.split(r"[-\.]", __version__))

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
MAJOR = 1
2424
REVISION = 0
25-
PATCH = 29
25+
PATCH = 30
2626
DEV = False
2727
# NOTE: also update version at: README.rst
2828

0 commit comments

Comments
 (0)