From b850cc8177db0c7ebd3d41f3a3bb2cd0acfd6dd7 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Fri, 27 Dec 2024 16:09:45 -0500 Subject: [PATCH] Bump to v2.0.3 (#945) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 2.0.2 → 2.0.3 --- .bumpversion.cfg | 2 +- HISTORY.md | 13 +++++++++++++ docs/source/conf.py | 4 ++-- pyproject.toml | 2 +- strax/__init__.py | 2 +- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 76bac9ce..e32b9fa8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.2 +current_version = 2.0.3 files = strax/__init__.py docs/source/conf.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 29c835c1..3c03e2ac 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,16 @@ +2.0.3 / 2024-12-27 +--------------------- +* Move `set_nan_defaults` from straxen to strax by @dachengx in https://github.com/AxFoundation/strax/pull/936 +* Move `compute_center_times` from straxen to strax by @dachengx in https://github.com/AxFoundation/strax/pull/938 +* First convert to int then add float to keep precision by @dachengx in https://github.com/AxFoundation/strax/pull/939 +* Use `bool` instead of `np.bool_` by @dachengx in https://github.com/AxFoundation/strax/pull/940 +* Calculate `area_fraction_top`, `center_time` and `median_time` at peaklet level by @dachengx in https://github.com/AxFoundation/strax/pull/941 +* Delete input chunks after compute method to save memory by @dachengx in https://github.com/AxFoundation/strax/pull/942 +* Reduce RAM usage of `find_hit_integration_bounds` by @dachengx in https://github.com/AxFoundation/strax/pull/943 + +**Full Changelog**: https://github.com/AxFoundation/strax/compare/v2.0.2...v2.0.3 + + 2.0.2 / 2024-11-19 --------------------- * Raise error when peaks overlapping in `merge_peaks` by @dachengx in https://github.com/AxFoundation/strax/pull/927 diff --git a/docs/source/conf.py b/docs/source/conf.py index d67f6465..364c49e8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = "2.0.2" +version = "2.0.3" # The full version, including alpha/beta/rc tags. -release = "2.0.2" +release = "2.0.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index b1e4d23a..d14df6e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "strax" -version = "2.0.2" +version = "2.0.3" description = "Streaming analysis for xenon TPCs" readme = "README.md" authors = [ diff --git a/strax/__init__.py b/strax/__init__.py index 77e64654..214a13a8 100644 --- a/strax/__init__.py +++ b/strax/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = "2.0.2" +__version__ = "2.0.3" # Glue the package together # See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you