diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1e538fdd7..5620935d5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.2 +current_version = 0.11.3 files = setup.py strax/__init__.py docs/source/conf.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 3bdd16f59..0b163ffa7 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +0.11.3 / 2020-07-29 +--------------------- +- bugfix in new progressbar feature (#296) + + 0.11.2 / 2020-07-21 --------------------- - new plugin type: CutPlugin (#274) diff --git a/docs/source/conf.py b/docs/source/conf.py index 6da6b5a75..132c45657 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -65,9 +65,9 @@ # built documents. # # The short X.Y version. -version = '0.11.2' +version = '0.11.3' # The full version, including alpha/beta/rc tags. -release = '0.11.2' +release = '0.11.3' # 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 b18867ad2..206a2c0ba 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ history = file.read() setuptools.setup(name='strax', - version='0.11.2', + version='0.11.3', 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 4cfb3f6cf..a0137bb2e 100644 --- a/strax/__init__.py +++ b/strax/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = '0.11.2' +__version__ = '0.11.3' # Glue the package together # See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you