Release v0.31.1
This commit is contained in:
parent
74c4aa9c9f
commit
11ff2ed69b
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -4,6 +4,21 @@ documented here.
|
||||||
|
|
||||||
This project adheres to [Semantic Versioning](https://semver.org/).
|
This project adheres to [Semantic Versioning](https://semver.org/).
|
||||||
|
|
||||||
|
## [0.31.1] (31 July 2022)
|
||||||
|
|
||||||
|
### Modified
|
||||||
|
- Improve performances of multiplication of two sparse matrices.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Add `Matrix::from_row_iterator` to build a matrix from an iterator yielding components in row-major order.
|
||||||
|
- Add support for conversion from/to types of `glam` 0.21.
|
||||||
|
- `nalgebra-sparse`: add support for the matrix-market export of sparse matrices.
|
||||||
|
- `nalgebra-lapack`: add a `GE` for solving the generalized eigenvalues problem.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fix `Rotation3::from_matrix` and `UnitQuaternion::from_matrix` when the input matrix is already a valid
|
||||||
|
rotation matrix.
|
||||||
|
|
||||||
## [0.31.0] (30 Apr. 2022)
|
## [0.31.0] (30 Apr. 2022)
|
||||||
|
|
||||||
### Breaking changes
|
### Breaking changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "nalgebra"
|
name = "nalgebra"
|
||||||
version = "0.31.0"
|
version = "0.31.1"
|
||||||
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
||||||
|
|
||||||
description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."
|
description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."
|
||||||
|
@ -132,6 +132,6 @@ required-features = ["rand"]
|
||||||
lto = true
|
lto = true
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
# Enable certain features when building docs for docs.rs
|
# Enable all the features when building the docs on docs.rs
|
||||||
features = [ "proptest-support", "compare", "macros", "rand" ]
|
all-features = true
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "nalgebra-sparse"
|
name = "nalgebra-sparse"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = [ "Andreas Longva", "Sébastien Crozet <developer@crozet.re>" ]
|
authors = [ "Andreas Longva", "Sébastien Crozet <developer@crozet.re>" ]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Sparse matrix computation based on nalgebra."
|
description = "Sparse matrix computation based on nalgebra."
|
||||||
|
|
Loading…
Reference in New Issue