Skip to content

v0.10.0

Choose a tag to compare

@jacovdbergh jacovdbergh released this 26 May 13:05
· 11 commits to master since this release

Changed

  • Breaking: Merged --temporal-index and --temporal-stride into a single
    --temporal-index <STRIDE> option. Passing the flag now both enables the
    temporal index EVLR and sets the sampling stride (every n-th point); omitting
    it disables the index. The previous --temporal-index boolean flag and the
    separate --temporal-stride option are gone. (#19)
  • Breaking (API): PipelineConfig.temporal_index changed from bool to
    Option<u32> and the temporal_stride field was removed. Migrate
    temporal_index: true, temporal_stride: 1000 to temporal_index: Some(1000),
    and temporal_index: false to temporal_index: None.

Added

  • New Error::InvalidTemporalStride variant returned when the temporal index is
    requested with a stride that can't produce a valid index.

What's Changed

  • merge temporal_index and temporal_stride into a single option by @yvind in #19

New Contributors

  • @yvind made their first contribution in #19

Full Changelog: v0.9.15...v0.10.0