Skip to content

Commit

Permalink
Bump version to v1.0.30
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaak committed Jun 21, 2022
1 parent f8ca1c5 commit a87c400
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
Release notes
=============

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

Version 1.0.28, June 2022
-------------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ PyCUDA is available, they can also be filled from Numpy arrays by JIT-compiling

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

Latest Python release: v1.0.29 (June 2022).
Latest Python release: v1.0.30 (June 2022).

Announcements
=============
Expand Down
6 changes: 3 additions & 3 deletions histogrammar/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import re

name = "histogrammar"
__version__ = "1.0.28"
version = "1.0.28"
full_version = "1.0.28"
__version__ = "1.0.30"
version = "1.0.30"
full_version = "1.0.30"
release = True

version_info = tuple(re.split(r"[-\.]", __version__))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

MAJOR = 1
REVISION = 0
PATCH = 29
PATCH = 30
DEV = False
# NOTE: also update version at: README.rst

Expand Down

0 comments on commit a87c400

Please sign in to comment.