diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7e21311..454d658 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2 +current_version = 0.3.0 files = axidence/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 9788d79..065149b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 diff --git a/axidence/__init__.py b/axidence/__init__.py index 01a02b3..043d5f8 100644 --- a/axidence/__init__.py +++ b/axidence/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.2" +__version__ = "0.3.0" from . import dtypes from .dtypes import * diff --git a/pyproject.toml b/pyproject.toml index 82252fe..d9d5a93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"