From a752a4bbf5fb55c82d8776fcb9327c9b70da128c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sun, 9 Oct 2022 22:03:03 +0200 Subject: [PATCH] Release v0.31.2 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2950a1df..e035e084 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ documented here. This project adheres to [Semantic Versioning](https://semver.org/). +## [0.31.2] (09 Oct. 2022) + +### Modified +- Use `#[inline]` on the `Dim` implementation for `Const` to improve opt-level 1 performance. +- Make the `Point::new` constructions const-fn. + +### Added +- Add `UnitVector::cast` to change the underlying scalar type. + + ## [0.31.1] (31 July 2022) ### Modified diff --git a/Cargo.toml b/Cargo.toml index 5b9940df..89de73e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra" -version = "0.31.1" +version = "0.31.2" authors = [ "Sébastien Crozet " ] description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."