Skip to content

Commit

Permalink
Release 1.2.1 (#198)
Browse files Browse the repository at this point in the history
* Bump version: 1.2.0 → 1.2.1

* Update HISTORY.md

* try to make flake 8 happy

* Typo

---------

Co-authored-by: Diego Ramírez García <diego.ramirez@physik.uzh.ch>
  • Loading branch information
HenningSE and ramirezdiego authored Apr 24, 2024
1 parent f08d6ce commit c7ce5de
Show file tree
Hide file tree
Showing 5 changed files with 13 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 = 1.2.0
current_version = 1.2.1
commit = True
tag = True

Expand Down
9 changes: 9 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.2.1 / 2024-04-24
------------------
* pre-commit autoupdate (#191)
* Fix the `data_kind` of `RecordsTruth` (#194)
* Test full chain in multiple chunks and clean up input tests (#184)
* Add a dtypes manager (#195)
* Add pull_request_template.md (#197)
* Scale S2 pattern map to correct S2 AFT (#196)

1.2.0 / 2024-04-11
------------------
* Specify lxml version (#185)
Expand Down
2 changes: 1 addition & 1 deletion fuse/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.2.0"
__version__ = "1.2.1"

from . import dtypes
from .dtypes import *
Expand Down
2 changes: 1 addition & 1 deletion fuse/plugins/micro_physics/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def output_chunk(self):
# Remove interactions that happen way after the run ended
delay_cut = inter_reshaped["t"] <= self.cut_delayed
log.info(
f"Removing {np.sum(~delay_cut)} ({np.sum(~delay_cut)/len(delay_cut):.4%}) "
f"Removing {np.sum(~delay_cut)} ({np.sum(~delay_cut) / len(delay_cut):.4%}) "
f"interactions later than {self.cut_delayed:.2e} ns."
)
inter_reshaped = inter_reshaped[delay_cut]
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 = "xenon-fuse"
version = "1.2.0"
version = "1.2.1"
description = "XENON Framework for Unified Simulations of Events"
authors = [
"Henning Schulze Eißing, <h_schu55@uni-muenster.de>",
Expand Down

0 comments on commit c7ce5de

Please sign in to comment.