Skip to content

Commit 3b09f31

Browse files
committed
Bump up to version v1.0.32
1 parent 217bb59 commit 3b09f31

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

Diff for: CHANGES.rst

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

5+
Version 1.0.32, Sep 2022
6+
------------------------
7+
* Support for decimal datetype in pandas and spark.
8+
59
Version 1.0.31, Aug 2022
610
------------------------
711
* fix of spark df timestamp datatype detection (#59)

Diff for: README.rst

+3-2
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.31 (Aug 2022).
23+
Latest Python release: v1.0.32 (Sep 2022).
2424

2525

2626
Announcements
@@ -29,7 +29,7 @@ Announcements
2929
Changes
3030
-------
3131

32-
See `here <https://github.com/histogrammar/histogrammar-python/blob/master/CHANGES.rst>`_.
32+
See Changes log `here <https://github.com/histogrammar/histogrammar-python/blob/master/CHANGES.rst>`_.
3333

3434

3535
Spark 3.0
@@ -45,6 +45,7 @@ For Spark 2.X compiled against scala 2.11, in the string above simply replace "2
4545

4646
February, 2021
4747

48+
4849
Example notebooks
4950
=================
5051

Diff for: 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.30"
7-
version = "1.0.30"
8-
full_version = "1.0.30"
6+
__version__ = "1.0.32"
7+
version = "1.0.32"
8+
full_version = "1.0.32"
99
release = True
1010

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

Diff for: 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 = 31
25+
PATCH = 32
2626
DEV = False
2727
# NOTE: also update version at: README.rst and update CHANGES.rst
2828

0 commit comments

Comments
 (0)