Skip to content

v0.3.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 25 Aug 08:10

FastRunningMedian v0.3.0

There were breaking changes to the stateful API. Here is a quick overview of how to upgrade:

  • mf = MedianFilter(1, 3) -> mf = MedianFilter(Int64, 3); grow!(mf, 1)
  • window_size(mf) -> window_length(mf)
  • grow!, shrink! and roll! now return the median filter instead of nothing. This might cause unintended problems in some cases but aligns the API with other modifying methods in Julia base.

For details see the README file.


Diff since v0.2.1

Closed issues:

  • Add support for output pre-allocation (#23)
  • Allow roll! with non-full window (#25)
  • Add tapering at beginning only for compatibility with RollingWindows.jl (#26)
  • Update Aqua.jl (#27)
  • Use JET.jl to Look for Type Warnings (#28)
  • Separate reset! and grow! (#30)