Release v0.21.1

This commit is contained in:
sebcrozet 2020-06-07 10:29:10 +02:00
parent a8f746f911
commit 2198b0e6b4
2 changed files with 10 additions and 1 deletions

View File

@ -4,6 +4,15 @@ documented here.
This project adheres to [Semantic Versioning](https://semver.org/).
## [0.22.0] - WIP
### Added
* `Cholesky::new_unchecked` which build a Cholesky decomposition without checking that its input is
positive-definite. It can be use with SIMD types.
* The `Default` trait is now implemented for matrices, and quaternions. They are all filled with zeros,
except for `UnitQuaternion` which is initialized with the identity.
* Matrix exponential `matrix.exp()`.
## [0.21.0]
In this release, we are no longer relying on traits from the __alga__ crate for our generic code.

View File

@ -1,6 +1,6 @@
[package]
name = "nalgebra"
version = "0.21.0"
version = "0.21.1"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices."