diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b8865dd..2ff7063 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.1 +current_version = 2.3.2 files = setup.py hax/__init__.py docs/conf.py commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 4723996..de3c386 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -71,9 +71,9 @@ # built documents. # # The short X.Y version. -version = '2.3.1' +version = '2.3.2' # The full version, including alpha/beta/rc tags. -release = '2.3.1' +release = '2.3.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/hax/__init__.py b/hax/__init__.py index 3e2b64c..78401bd 100644 --- a/hax/__init__.py +++ b/hax/__init__.py @@ -6,7 +6,7 @@ import numba # flake8: noqa: F401 from . import misc, minitrees, paxroot, pmt_plot, raw_data, runs, utils, treemakers, data_extractor, slow_control, \ trigger_data, ipython, recorrect # flake8: noqa: F401 -__version__ = '2.3.1' +__version__ = '2.3.2' # Stitch the package together diff --git a/setup.py b/setup.py index e67013d..0fd3d9c 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ if q not in 'numpy pandas numba dask'.split()] setup(name='hax', - version='2.3.1', + version='2.3.2', description="Handy Analysis for XENON", long_description=readme + '\n\n' + history, url='https://github.com/XENON1T/hax',