From 1312d952e853355cfdc1ad0fa026298a0bf809d9 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Thu, 16 May 2024 10:26:18 -0400 Subject: [PATCH] Bump to v2.2.3 (#1383) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 2.2.2 → 2.2.3 --- .bumpversion.cfg | 2 +- HISTORY.md | 9 +++++++++ setup.py | 2 +- straxen/__init__.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) 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 *