Skip to content

Commit

Permalink
Bump version of changed plugins in #1503 (#1504)
Browse files Browse the repository at this point in the history
  • Loading branch information
dachengx authored Dec 20, 2024
1 parent 7c8a01c commit 3a310e4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion straxen/plugins/events/event_basics_vanilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion straxen/plugins/events/event_top_bottom_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion straxen/plugins/events_nv/event_waveform_nv.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion straxen/plugins/merged_s2s/merged_s2s.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion straxen/plugins/peaklets/peaklet_classification_vanilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion straxen/plugins/peaklets/peaklets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion straxen/plugins/peaks/peak_basics_vanilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class PeakBasicsVanilla(strax.Plugin):
"""

__version__ = "0.1.5"
__version__ = "0.1.6"
depends_on = "peaks"
provides = "peak_basics"

Expand Down
2 changes: 1 addition & 1 deletion straxen/plugins/peaks/peak_top_bottom_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down

0 comments on commit 3a310e4

Please sign in to comment.