From f282d02db1dcaf1647cae0c9729cf2bc6f8caf61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crozet=20S=C3=A9bastien?= Date: Tue, 2 Mar 2021 14:24:55 +0100 Subject: [PATCH] Release v0.25.1 --- CHANGELOG.md | 11 ++++++++++- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bafa8337..e65ed971 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 5d0fece6..ea9a2894 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra" -version = "0.25.0" +version = "0.25.1" authors = [ "Sébastien Crozet " ] description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."