Skip to content

Commit

Permalink
Release v0.31.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Jul 31, 2022
1 parent 74c4aa9 commit 11ff2ed
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ documented here.

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)

### Breaking changes
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nalgebra"
version = "0.31.0"
version = "0.31.1"
authors = [ "Sébastien Crozet <[email protected]>" ]

description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."
Expand Down Expand Up @@ -132,6 +132,6 @@ required-features = ["rand"]
lto = true

[package.metadata.docs.rs]
# Enable certain features when building docs for docs.rs
features = [ "proptest-support", "compare", "macros", "rand" ]
# Enable all the features when building the docs on docs.rs
all-features = true

2 changes: 1 addition & 1 deletion nalgebra-sparse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nalgebra-sparse"
version = "0.7.0"
version = "0.7.1"
authors = [ "Andreas Longva", "Sébastien Crozet <[email protected]>" ]
edition = "2018"
description = "Sparse matrix computation based on nalgebra."
Expand Down

0 comments on commit 11ff2ed

Please sign in to comment.