From 3a310e4414ed8a83fed2820a00f158b4700584f2 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Fri, 20 Dec 2024 00:54:33 -0500 Subject: [PATCH] Bump version of changed plugins in #1503 (#1504) --- straxen/plugins/events/event_basics_vanilla.py | 2 +- straxen/plugins/events/event_top_bottom_params.py | 2 +- straxen/plugins/events_nv/event_waveform_nv.py | 2 +- straxen/plugins/merged_s2s/merged_s2s.py | 2 +- straxen/plugins/peaklets/peaklet_classification_vanilla.py | 2 +- straxen/plugins/peaklets/peaklets.py | 2 +- straxen/plugins/peaks/peak_basics_vanilla.py | 2 +- straxen/plugins/peaks/peak_top_bottom_params.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/straxen/plugins/events/event_basics_vanilla.py b/straxen/plugins/events/event_basics_vanilla.py index 86510c88e..fb3842a52 100644 --- a/straxen/plugins/events/event_basics_vanilla.py +++ b/straxen/plugins/events/event_basics_vanilla.py @@ -17,7 +17,7 @@ class EventBasicsVanilla(strax.Plugin): """ - __version__ = "1.3.3" + __version__ = "1.3.4" depends_on = ("events", "peak_basics", "peak_positions", "peak_proximity") provides = "event_basics" diff --git a/straxen/plugins/events/event_top_bottom_params.py b/straxen/plugins/events/event_top_bottom_params.py index ee3ae8694..7f63f83ba 100644 --- a/straxen/plugins/events/event_top_bottom_params.py +++ b/straxen/plugins/events/event_top_bottom_params.py @@ -12,7 +12,7 @@ class EventTopBottomParams(strax.Plugin): depends_on = ("event_info", "event_waveform") provides = "event_top_bottom_params" - __version__ = "0.0.0" + __version__ = "0.0.1" def infer_dtype(self): # Populating data type information diff --git a/straxen/plugins/events_nv/event_waveform_nv.py b/straxen/plugins/events_nv/event_waveform_nv.py index 6f3d9eb57..9bc8b1afd 100644 --- a/straxen/plugins/events_nv/event_waveform_nv.py +++ b/straxen/plugins/events_nv/event_waveform_nv.py @@ -11,7 +11,7 @@ class nVETOEventWaveform(strax.Plugin): """Plugin which computes the summed waveform as well as some shape properties of the NV events.""" - __version__ = "0.0.1" + __version__ = "0.0.2" depends_on = "events_nv", "records_nv" provides = "event_waveform_nv" diff --git a/straxen/plugins/merged_s2s/merged_s2s.py b/straxen/plugins/merged_s2s/merged_s2s.py index 74a614cb5..07778e18f 100644 --- a/straxen/plugins/merged_s2s/merged_s2s.py +++ b/straxen/plugins/merged_s2s/merged_s2s.py @@ -14,7 +14,7 @@ class MergedS2s(strax.OverlapWindowPlugin): """Merge together peaklets if peak finding favours that they would form a single peak instead.""" - __version__ = "1.1.0" + __version__ = "1.1.1" depends_on: Tuple[str, ...] = ("peaklets", "peaklet_classification", "lone_hits") data_kind = "merged_s2s" diff --git a/straxen/plugins/peaklets/peaklet_classification_vanilla.py b/straxen/plugins/peaklets/peaklet_classification_vanilla.py index ce297a325..b024edb84 100644 --- a/straxen/plugins/peaklets/peaklet_classification_vanilla.py +++ b/straxen/plugins/peaklets/peaklet_classification_vanilla.py @@ -12,7 +12,7 @@ class PeakletClassificationVanilla(strax.Plugin): """Classify peaklets as unknown, S1, or S2.""" - __version__ = "3.0.3" + __version__ = "3.0.4" depends_on = "peaklets" provides: Union[str, tuple] = "peaklet_classification" diff --git a/straxen/plugins/peaklets/peaklets.py b/straxen/plugins/peaklets/peaklets.py index ecd1f006d..271d07af6 100644 --- a/straxen/plugins/peaklets/peaklets.py +++ b/straxen/plugins/peaklets/peaklets.py @@ -39,7 +39,7 @@ class Peaklets(strax.Plugin): parallel = "process" compressor = "zstd" - __version__ = "1.2.0" + __version__ = "1.2.1" peaklet_gap_threshold = straxen.URLConfig( default=700, infer_type=False, help="No hits for this many ns triggers a new peak" diff --git a/straxen/plugins/peaks/peak_basics_vanilla.py b/straxen/plugins/peaks/peak_basics_vanilla.py index 6c16908d2..42c82067f 100644 --- a/straxen/plugins/peaks/peak_basics_vanilla.py +++ b/straxen/plugins/peaks/peak_basics_vanilla.py @@ -14,7 +14,7 @@ class PeakBasicsVanilla(strax.Plugin): """ - __version__ = "0.1.5" + __version__ = "0.1.6" depends_on = "peaks" provides = "peak_basics" diff --git a/straxen/plugins/peaks/peak_top_bottom_params.py b/straxen/plugins/peaks/peak_top_bottom_params.py index 36abf4788..b64d4cb8a 100644 --- a/straxen/plugins/peaks/peak_top_bottom_params.py +++ b/straxen/plugins/peaks/peak_top_bottom_params.py @@ -11,7 +11,7 @@ class PeakTopBottomParams(strax.Plugin): depends_on = ("peaks", "peak_basics") provides = "peak_top_bottom_params" - __version__ = "0.0.0" + __version__ = "0.0.1" def infer_dtype(self): dtype = []