Release v0.25.1

This commit is contained in:
Crozet Sébastien 2021-03-02 14:24:55 +01:00
parent 9e625db538
commit f282d02db1
2 changed files with 11 additions and 2 deletions

View File

@ -4,7 +4,16 @@ documented here.
This project adheres to [Semantic Versioning](https://semver.org/).
## [0.25.0]
## [0.25.1]
This release replaces the version 0.25.0 which has been yanked. The 0.25.0 version
added significant complication to build `nalgebra` targeting a `#[no-std]` platform
not supported by `rand`.
The `rand` dependency is now optional (and disabled by default). You may enable it with:
- The `rand-no-std` cargo feature when targeting a `#[no-std]` environment.
- The `rand` cargo feature when targeting a `std` environment.
## [0.25.0] - Yanked
This updates all the dependencies of nalgebra to their latest version, including:
- rand 0.8
- proptest 1.0

View File

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