Skip to content

Commit

Permalink
Bump to v3.1.1 (#1561)
Browse files Browse the repository at this point in the history
* Update HISTORY.md

* Bump version: 3.1.0 → 3.1.1

* Update strax version
  • Loading branch information
dachengx authored Feb 13, 2025
1 parent 592dbe3 commit 43151e1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 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 = 3.1.0
current_version = 3.1.1
files = straxen/__init__.py
commit = True
tag = True
Expand Down
11 changes: 11 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
3.1.1 / 2025-02-13
-------------------
* `n_hits` should be int32, otherwise overflow by @dachengx in https://github.com/XENONnT/straxen/pull/1558
* Iterative Bayesian 3D (t, x, y) S2 merging by @dachengx in https://github.com/XENONnT/straxen/pull/1513
* Swap `xenonnt_online` and `xenonnt` by @dachengx in https://github.com/XENONnT/straxen/pull/1560
* Optimize S2 time-density merging thresholds by @dachengx in https://github.com/XENONnT/straxen/pull/1559
* Raise error when the global version can not be find by @dachengx in https://github.com/XENONnT/straxen/pull/1557

**Full Changelog**: https://github.com/XENONnT/straxen/compare/v3.1.0...v3.1.1


3.1.0 / 2025-02-03
-------------------
* Check that `cmt://` protocol is not used by @dachengx in https://github.com/XENONnT/straxen/pull/1545
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool]
[tool.poetry]
name = "straxen"
version = "3.1.0"
version = "3.1.1"
description = "Streaming analysis for XENON"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -31,7 +31,7 @@ straxer = "straxen.scripts.straxer:main"

[tool.poetry.dependencies]
python = ">=3.10,<3.13"
strax = ">=2.1.0"
strax = ">=2.1.1"
bokeh = "*"
commentjson = "*"
gitpython = "*"
Expand Down
2 changes: 1 addition & 1 deletion straxen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# mypy: disable-error-code="no-redef"
__version__ = "3.1.0"
__version__ = "3.1.1"

from utilix import uconfig
from .common import *
Expand Down

0 comments on commit 43151e1

Please sign in to comment.