From c587088783f7af3f2ac407a7b5f21969455ecdf7 Mon Sep 17 00:00:00 2001 From: pdeperio Date: Mon, 25 Dec 2017 12:20:20 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.1.1=20=E2=86=92=202.2.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 490e956..0f14e90 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.1 +current_version = 2.2.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 8ff58fa..2cc00c1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -71,9 +71,9 @@ # built documents. # # The short X.Y version. -version = '2.1.1' +version = '2.2.0' # The full version, including alpha/beta/rc tags. -release = '2.1.1' +release = '2.2.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 636f360..bb96fbd 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.1.1' +__version__ = '2.2.0' # Stitch the package together diff --git a/setup.py b/setup.py index e6d7d68..a3ab152 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.1.1', + version='2.2.0', description="Handy Analysis for XENON", long_description=readme + '\n\n' + history, url='https://github.com/XENON1T/hax',