Skip to content

Commit 848e65e

Browse files
authored
Bump to v2.0.5 (#963)
* Update HISTORY.md * Bump version: 2.0.4 → 2.0.5
1 parent 441b788 commit 848e65e

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.0.4
2+
current_version = 2.0.5
33
files = strax/__init__.py docs/source/conf.py
44
commit = True
55
tag = True

HISTORY.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2.0.5 / 2025-01-24
2+
---------------------
3+
* When loader is available, do not save anything by @dachengx in https://github.com/AxFoundation/strax/pull/953
4+
* Do not cache `find_split_points` by @dachengx in https://github.com/AxFoundation/strax/pull/955
5+
* Set `chunk_number` as attribute of `Plugin` to pass `chunk_i` by @dachengx in https://github.com/AxFoundation/strax/pull/956
6+
* First and last channel inside peak(let)s by @dachengx in https://github.com/AxFoundation/strax/pull/954
7+
* Temporary plugin should keep order of targets by @dachengx in https://github.com/AxFoundation/strax/pull/958
8+
* Some times the sum of data is zero due to numerical inaccuracy by @dachengx in https://github.com/AxFoundation/strax/pull/959
9+
* Use `base` of dtype in `set_nan_defaults` by @dachengx in https://github.com/AxFoundation/strax/pull/960
10+
* Remove `CorrectionsInterface` by @dachengx in https://github.com/AxFoundation/strax/pull/961
11+
* Drop python 3.9 and loosen requirement of `numpy` by @dachengx in https://github.com/AxFoundation/strax/pull/962
12+
13+
**Full Changelog**: https://github.com/AxFoundation/strax/compare/v2.0.4...v2.0.5
14+
15+
116
2.0.4 / 2025-01-13
217
---------------------
318
* Numbafy `merge_peaks` by @dachengx in https://github.com/AxFoundation/strax/pull/946

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = "2.0.4"
69+
version = "2.0.5"
7070
# The full version, including alpha/beta/rc tags.
71-
release = "2.0.4"
71+
release = "2.0.5"
7272

7373
# The language for content autogenerated by Sphinx. Refer to documentation
7474
# for a list of supported languages.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool]
22
[tool.poetry]
33
name = "strax"
4-
version = "2.0.4"
4+
version = "2.0.5"
55
description = "Streaming analysis for xenon TPCs"
66
readme = "README.md"
77
authors = [

strax/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# flake8: noqa
2-
__version__ = "2.0.4"
2+
__version__ = "2.0.5"
33

44
# Glue the package together
55
# See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you

0 commit comments

Comments
 (0)