From 848e65ebea181c97e8e40d7b575a6039a96da794 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Fri, 24 Jan 2025 02:44:33 -0500 Subject: [PATCH] Bump to v2.0.5 (#963) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 2.0.4 → 2.0.5 --- .bumpversion.cfg | 2 +- HISTORY.md | 15 +++++++++++++++ docs/source/conf.py | 4 ++-- pyproject.toml | 2 +- strax/__init__.py | 2 +- 5 files changed, 20 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b1211f72..014a215a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.4 +current_version = 2.0.5 files = strax/__init__.py docs/source/conf.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 7e700701..7a786f64 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,18 @@ +2.0.5 / 2025-01-24 +--------------------- +* When loader is available, do not save anything by @dachengx in https://github.com/AxFoundation/strax/pull/953 +* Do not cache `find_split_points` by @dachengx in https://github.com/AxFoundation/strax/pull/955 +* Set `chunk_number` as attribute of `Plugin` to pass `chunk_i` by @dachengx in https://github.com/AxFoundation/strax/pull/956 +* First and last channel inside peak(let)s by @dachengx in https://github.com/AxFoundation/strax/pull/954 +* Temporary plugin should keep order of targets by @dachengx in https://github.com/AxFoundation/strax/pull/958 +* Some times the sum of data is zero due to numerical inaccuracy by @dachengx in https://github.com/AxFoundation/strax/pull/959 +* Use `base` of dtype in `set_nan_defaults` by @dachengx in https://github.com/AxFoundation/strax/pull/960 +* Remove `CorrectionsInterface` by @dachengx in https://github.com/AxFoundation/strax/pull/961 +* Drop python 3.9 and loosen requirement of `numpy` by @dachengx in https://github.com/AxFoundation/strax/pull/962 + +**Full Changelog**: https://github.com/AxFoundation/strax/compare/v2.0.4...v2.0.5 + + 2.0.4 / 2025-01-13 --------------------- * Numbafy `merge_peaks` by @dachengx in https://github.com/AxFoundation/strax/pull/946 diff --git a/docs/source/conf.py b/docs/source/conf.py index 8cfea8ac..061d45db 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.4" +version = "2.0.5" # The full version, including alpha/beta/rc tags. -release = "2.0.4" +release = "2.0.5" # 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 b0c91123..67e2eed9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "strax" -version = "2.0.4" +version = "2.0.5" description = "Streaming analysis for xenon TPCs" readme = "README.md" authors = [ diff --git a/strax/__init__.py b/strax/__init__.py index 93befc52..85a35c0d 100644 --- a/strax/__init__.py +++ b/strax/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = "2.0.4" +__version__ = "2.0.5" # Glue the package together # See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you