Skip to content

Commit

Permalink
Bump version to v1.0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaak committed Apr 9, 2022
1 parent d2e686f commit d8c8763
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Histograms and other aggregators may also be converted into CUDA code for inclus
PyCUDA is available, they can also be filled from Numpy arrays by JIT-compiling the CUDA code.
This Python implementation of histogrammar been tested to guarantee compatibility with its Scala implementation.

Latest Python release: v1.0.25 (April 2022).
Latest Python release: v1.0.26 (April 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.24"
version = "1.0.24"
full_version = "1.0.24"
__version__ = "1.0.26"
version = "1.0.26"
full_version = "1.0.26"
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 = 25
PATCH = 26
DEV = False
# NOTE: also update version at: README.rst

Expand Down

0 comments on commit d8c8763

Please sign in to comment.