v0.10.0
Changed
- Breaking: Merged
--temporal-indexand--temporal-strideinto 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-indexboolean flag and the
separate--temporal-strideoption are gone. (#19) - Breaking (API):
PipelineConfig.temporal_indexchanged fromboolto
Option<u32>and thetemporal_stridefield was removed. Migrate
temporal_index: true, temporal_stride: 1000totemporal_index: Some(1000),
andtemporal_index: falsetotemporal_index: None.
Added
- New
Error::InvalidTemporalStridevariant returned when the temporal index is
requested with a stride that can't produce a valid index.
What's Changed
New Contributors
Full Changelog: v0.9.15...v0.10.0