Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2.0
current_version = 2.2.1
files = strax/__init__.py docs/source/conf.py
commit = True
tag = True
Expand Down
10 changes: 10 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2.2.1 / 2025-07-18
---------------------
* Check the `data_type` of returned chunk of plugin by @dachengx in https://github.com/AxFoundation/strax/pull/995
* Topological level and shortest dependency path of dependency tree (directed acyclic graph) by @dachengx in https://github.com/AxFoundation/strax/pull/996
* Do not assign `_multi_output_topics` when the topic is from a loader by @dachengx in https://github.com/AxFoundation/strax/pull/997

**Full Changelog**: https://github.com/AxFoundation/strax/compare/v2.2.0...v2.2.1



2.2.0 / 2025-05-16
---------------------
* Fix a corner case where the chunk size is zero by @dachengx in https://github.com/AxFoundation/strax/pull/988
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.2.0"
version = "2.2.1"
# The full version, including alpha/beta/rc tags.
release = "2.2.0"
release = "2.2.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.2.0"
version = "2.2.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.2.0"
__version__ = "2.2.1"

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