diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f00850832..cd03428a5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.2.2 +current_version = 2.2.3 files = setup.py straxen/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index aaa603e8f..560fdf0a9 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,12 @@ +2.2.3 / 2024-05-16 +------------------- +* No need to set `loop_over` for `EventBasics` by @dachengx in https://github.com/XENONnT/straxen/pull/1377 +* Initialize plugins whose `depends_on` is property by @dachengx in https://github.com/XENONnT/straxen/pull/1379 +* Collect functions used for documentation building in `docs_utils.py` by @dachengx in https://github.com/XENONnT/straxen/pull/1380 + +**Full Changelog**: https://github.com/XENONnT/straxen/compare/v2.2.2...v2.2.3 + + 2.2.2 / 2024-04-30 ------------------- * Minor change of indents by @dachengx in https://github.com/XENONnT/straxen/pull/1341 diff --git a/setup.py b/setup.py index b9a17bff7..4ade410e6 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def open_requirements(path): setuptools.setup( name="straxen", - version="2.2.2", + version="2.2.3", description="Streaming analysis for XENON", author="Straxen contributors, the XENON collaboration", url="https://github.com/XENONnT/straxen", diff --git a/straxen/__init__.py b/straxen/__init__.py index 77f7b426f..8118e666b 100644 --- a/straxen/__init__.py +++ b/straxen/__init__.py @@ -1,5 +1,5 @@ # mypy: disable-error-code="no-redef" -__version__ = "2.2.2" +__version__ = "2.2.3" from utilix import uconfig from .common import *