From 90ed565ff4793c44eff93260e7f4d833af1ec43a Mon Sep 17 00:00:00 2001 From: Joran Angevaare Date: Thu, 3 Feb 2022 16:27:59 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.1.5=20=E2=86=92=201.1.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/source/conf.py | 4 ++-- setup.py | 2 +- strax/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 674650a20..c37b7a228 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.5 +current_version = 1.1.6 files = setup.py strax/__init__.py docs/source/conf.py commit = True tag = True diff --git a/docs/source/conf.py b/docs/source/conf.py index 419dd9d40..d8f165035 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -65,9 +65,9 @@ # built documents. # # The short X.Y version. -version = '1.1.5' +version = '1.1.6' # The full version, including alpha/beta/rc tags. -release = '1.1.5' +release = '1.1.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 2d0488159..21a6809a5 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def open_requirements(path): history = file.read() setuptools.setup(name='strax', - version='1.1.5', + version='1.1.6', description='Streaming analysis for xenon TPCs', author='Jelle Aalbers', url='https://github.com/AxFoundation/strax', diff --git a/strax/__init__.py b/strax/__init__.py index 95d3c1168..3a1fc3741 100644 --- a/strax/__init__.py +++ b/strax/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = '1.1.5' +__version__ = '1.1.6' # Glue the package together # See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you