Skip to content

Commit 0c821a0

Browse files
committed
Bump up to version v1.0.31
1 parent 2ef059d commit 0c821a0

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Release notes
33
=============
44

5+
Version 1.0.31, Aug 2022
6+
------------------------
7+
* fix of spark df timestamp datatype detection (#59)
8+
* fix for invalid bin_edges for SparselyBin histogram (#60)
9+
510
Version 1.0.30, June 2022
611
-------------------------
712
* Fix for machine-level rounding error, which can show up on in num_bins() call of Bin histogram.

README.rst

Lines changed: 2 additions & 2 deletions
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.30 (June 2022).
23+
Latest Python release: v1.0.31 (Aug 2022).
2424

2525
Announcements
2626
=============
@@ -156,4 +156,4 @@ License
156156
:target: https://colab.research.google.com/github/histogrammar/histogrammar-python/blob/master/histogrammar/notebooks/histogrammar_tutorial_advanced.ipynb
157157
.. |notebook_exercises_colab| image:: https://colab.research.google.com/assets/colab-badge.svg
158158
:alt: Open in Colab
159-
:target: https://colab.research.google.com/github/histogrammar/histogrammar-python/blob/master/histogrammar/notebooks/histogrammar_tutorial_exercises.ipynb
159+
:target: https://colab.research.google.com/github/histogrammar/histogrammar-python/blob/master/histogrammar/notebooks/histogrammar_tutorial_exercises.ipynb

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

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

2929
with open("requirements.txt") as f:
3030
REQUIREMENTS = f.read().splitlines()

0 commit comments

Comments
 (0)