Skip to content

Commit

Permalink
Bump to v2.0.1 (#926)
Browse files Browse the repository at this point in the history
* Bump version: 2.0.0 → 2.0.1

* Update `README.md`
  • Loading branch information
dachengx authored Nov 15, 2024
1 parent 8489aa2 commit dd62b13
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 2.0.1
files = strax/__init__.py docs/source/conf.py
commit = True
tag = True
Expand Down
13 changes: 13 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
2.0.1 / 2024-11-14
---------------------
* Allow `chunk_number` to be list or tuple in `dry_load_files` function by @dachengx in https://github.com/AxFoundation/strax/pull/921
* 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
* Run garbage collection after yield result in `Plugin.iter` by @dachengx in https://github.com/AxFoundation/strax/pull/922
* 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
* Speed up `get_dependencies` by @dachengx in https://github.com/AxFoundation/strax/pull/924
* Add more kwargs to `dry_load_files` by @dachengx in https://github.com/AxFoundation/strax/pull/925
* Add enforcement for `np.sort` and `np.argsort` by @yuema137 in https://github.com/AxFoundation/strax/pull/918

**Full Changelog**: https://github.com/AxFoundation/strax/compare/v2.0.0...v2.0.1


2.0.0 / 2024-10-18
---------------------
* Allow `_chunk_number` to be list or tuple by @dachengx in https://github.com/AxFoundation/strax/pull/856
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
# built documents.
#
# The short X.Y version.
version = "2.0.0"
version = "2.0.1"
# The full version, including alpha/beta/rc tags.
release = "2.0.0"
release = "2.0.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool]
[tool.poetry]
name = "strax"
version = "2.0.0"
version = "2.0.1"
description = "Streaming analysis for xenon TPCs"
readme = "README.md"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion strax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# flake8: noqa
__version__ = "2.0.0"
__version__ = "2.0.1"

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

0 comments on commit dd62b13

Please sign in to comment.