Releases: sunsided/timelag-rs
Releases · sunsided/timelag-rs
0.5.0
To use timelag/0.5.0 in your project, add:
[dependencies]
timelag = "0.5.0"
Changes since 0.4.0
Added
- Added
Into<Box[T]>
forTimeLag
. - The crate is now explicitly labeled
forbid(unsafe)
unless theunsafe
feature is enabled.
Changed
- Upgraded
ndarray
from 0.15 to 0.16.
Internal
- Add criterion benchmarks to the project.
- Change
Into<_>
implementations toFrom<_>
for broader support.
0.4.0
To use timelag/0.4.0 in your project, add:
[dependencies]
timelag = "0.4.0"
Changes since 0.3.0
Changed
0.3.0
To use timelag/0.3.0 in your project, add:
[dependencies]
timelag = "0.3.0"
Changes since 0.2.0
Added
- #1: Added support for
ndarray::Array1
andndarray::Array2
inputs.
Changed
- Renamed
MatrixLayout::RowWise
andMatrixLayout::ColumnWise
toMatrixLayout::RowMajor
andMatrixLayout::ColumnMajor
.
0.2.0
To use timelag/0.2.0 in your project, add:
[dependencies]
timelag = "0.2.0"
Changes since 0.1.0
Internal
- Added
lag_matrix_2d
withMatrixLayout::RowWise
andMatrixLayout::ColumnWise
support.
0.1.0
To use timelag/0.1.0 in your project, add:
[dependencies]
timelag = "0.1.0"
Features of this release
Internal
- Added the
lag_matrix
function, as well asCreateLagMatrix
trait for sliceable types of copyable data.