diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4c1feebb1..eb17813b8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.1 +current_version = 3.0.2 files = straxen/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index dad348eca..5e2523e4e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,12 @@ +3.0.2 / 2025-01-13 +------------------- +* Collect SOM dtype at one place by @dachengx in https://github.com/XENONnT/straxen/pull/1511 +* Stop support for list of "take" protocol by @dachengx in https://github.com/XENONnT/straxen/pull/1517 +* Add `stage` flag for `RucioRemoteBackend` by @dachengx in https://github.com/XENONnT/straxen/pull/1520 + +**Full Changelog**: https://github.com/XENONnT/straxen/compare/v3.0.1...v3.0.2 + + 3.0.1 / 2024-12-27 ------------------- * Fix run_doc for led plugin by @GiovanniVolta in https://github.com/XENONnT/straxen/pull/1462 diff --git a/pyproject.toml b/pyproject.toml index 1a5faa420..c6378f316 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "straxen" -version = "3.0.1" +version = "3.0.2" description = "Streaming analysis for XENON" readme = "README.md" authors = [ diff --git a/straxen/__init__.py b/straxen/__init__.py index d7ee6278f..bd9d3b8f8 100644 --- a/straxen/__init__.py +++ b/straxen/__init__.py @@ -1,5 +1,5 @@ # mypy: disable-error-code="no-redef" -__version__ = "3.0.1" +__version__ = "3.0.2" from utilix import uconfig from .common import *