Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to v0.3.0 #75

Merged
merged 2 commits into from
May 14, 2024
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 = 0.2.2
current_version = 0.3.0
files = axidence/__init__.py
commit = True
tag = True
Expand Down
22 changes: 22 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
v0.3.0 / 2024-05-14
-------------------
* Move `ExhaustPlugin` to strax by @dachengx in https://github.com/XENONnT/axidence/pull/59
* Separate `assign_plugin_attributes` for future usage by @dachengx in https://github.com/XENONnT/axidence/pull/60
* Add `get_paring_rate_correction` to `PeaksPaired` by @dachengx in https://github.com/XENONnT/axidence/pull/61
* Debug for attributes assignments by @dachengx in https://github.com/XENONnT/axidence/pull/62
* Add `run_meta` as the dependency of `PeaksPaired` and store `run_id` into `peaks_paired` by @dachengx in https://github.com/XENONnT/axidence/pull/63
* Sort `dtype_reference` to prevent dtype mismatch by @dachengx in https://github.com/XENONnT/axidence/pull/64
* Bug fix when isolated S2 in input buffer is 0 by @dachengx in https://github.com/XENONnT/axidence/pull/66
* Debug `data_kind` of `PairingExists` by @dachengx in https://github.com/XENONnT/axidence/pull/67
* Implement Hyperruns by @dachengx in https://github.com/XENONnT/axidence/pull/65
* Customized salting by @dachengx in https://github.com/XENONnT/axidence/pull/68
* Make chunk size samller by @dachengx in https://github.com/XENONnT/axidence/pull/69
* Simulate S2AFT by @dachengx in https://github.com/XENONnT/axidence/pull/70
* Combine salted events and salting events by @dachengx in https://github.com/XENONnT/axidence/pull/71
* Simplify `shadow_reference_selection` by @dachengx in https://github.com/XENONnT/axidence/pull/72
* Slove the bug when salting peaks overlap by @dachengx in https://github.com/XENONnT/axidence/pull/73
* Fix bug when triggering peak in an event is not from the salting peaks by @dachengx in https://github.com/XENONnT/axidence/pull/74

**Full Changelog**: https://github.com/XENONnT/axidence/compare/v0.2.2...v0.3.0


v0.2.2 / 2024-04-30
-------------------
* Add `PeakNearestTriggeringSalted` and `EventNearestTriggeringSalted` by @dachengx in https://github.com/dachengx/axidence/pull/47
Expand Down
2 changes: 1 addition & 1 deletion axidence/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.2"
__version__ = "0.3.0"

from . import dtypes
from .dtypes import *
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 = "axidence"
version = "0.2.2"
version = "0.3.0"
description = "strax-based data-driven accidental coincidence background simulation and peak-level salting"
readme = "README.md"
license = "BSD-3-Clause"
Expand Down
Loading