Skip to content

Commit dd62b13

Browse files
authored
Bump to v2.0.1 (#926)
* Bump version: 2.0.0 → 2.0.1 * Update `README.md`
1 parent 8489aa2 commit dd62b13

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

Diff for: .bumpversion.cfg

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

Diff for: HISTORY.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2.0.1 / 2024-11-14
2+
---------------------
3+
* Allow `chunk_number` to be list or tuple in `dry_load_files` function by @dachengx in https://github.com/AxFoundation/strax/pull/921
4+
* Fixing store_data_start in recursive peak splitter calls and peaklet["length'] fix in store_downsampled_waveform by @HenningSE in https://github.com/AxFoundation/strax/pull/920
5+
* Run garbage collection after yield result in `Plugin.iter` by @dachengx in https://github.com/AxFoundation/strax/pull/922
6+
* Add a function to get size of a single item of data_type in bytes by @dachengx in https://github.com/AxFoundation/strax/pull/923
7+
* Speed up `get_dependencies` by @dachengx in https://github.com/AxFoundation/strax/pull/924
8+
* Add more kwargs to `dry_load_files` by @dachengx in https://github.com/AxFoundation/strax/pull/925
9+
* Add enforcement for `np.sort` and `np.argsort` by @yuema137 in https://github.com/AxFoundation/strax/pull/918
10+
11+
**Full Changelog**: https://github.com/AxFoundation/strax/compare/v2.0.0...v2.0.1
12+
13+
114
2.0.0 / 2024-10-18
215
---------------------
316
* Allow `_chunk_number` to be list or tuple by @dachengx in https://github.com/AxFoundation/strax/pull/856

Diff for: 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.0"
69+
version = "2.0.1"
7070
# The full version, including alpha/beta/rc tags.
71-
release = "2.0.0"
71+
release = "2.0.1"
7272

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

Diff for: 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.0"
4+
version = "2.0.1"
55
description = "Streaming analysis for xenon TPCs"
66
readme = "README.md"
77
authors = [

Diff for: strax/__init__.py

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

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

0 commit comments

Comments
 (0)