From 0376811f8c133ee097f2650f1082f0f4f70ecb77 Mon Sep 17 00:00:00 2001 From: Fei Gao Date: Fri, 30 Jun 2017 10:49:58 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.4.4=20=E2=86=92=201.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 4 ++-- hax/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a8ec703..9a19019 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.4 +current_version = 1.5.0 files = setup.py hax/__init__.py docs/conf.py commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 1378f82..5e9cd2d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -71,9 +71,9 @@ # built documents. # # The short X.Y version. -version = '1.4.4' +version = '1.5.0' # The full version, including alpha/beta/rc tags. -release = '1.4.4' +release = '1.5.0' # 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 5de4020..6e57c8f 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__ = '1.4.4' +__version__ = '1.5.0' # Stitch the package together diff --git a/setup.py b/setup.py index b97fcee..345ddd2 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ if q not in 'numpy pandas numba dask'.split()] setup(name='hax', - version='1.4.4', + version='1.5.0', description="Handy Analysis for XENON", long_description=readme + '\n\n' + history, url='https://github.com/XENON1T/hax',