From 7b5c08d9fa2a83f0d9dcf3a9edc7bf54128abc36 Mon Sep 17 00:00:00 2001 From: Dimitri Sabadie Date: Mon, 23 Nov 2020 22:28:45 +0100 Subject: [PATCH 1/2] Add support for nalgebra-0.23. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 98a2c99..a19f556 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ std = [] [dependencies] cgmath = { version = "0.17", optional = true } glam = { version = "0.10", optional = true } -nalgebra = { version = ">=0.21, <0.23", optional = true } +nalgebra = { version = ">=0.21, <0.24", optional = true } num-traits = { version = "0.2", optional = true } serde = { version = "1", optional = true } serde_derive = { version = "1", optional = true } From 5836f778f4fc90bfd89968732bd85dc43fcde4b4 Mon Sep 17 00:00:00 2001 From: Dimitri Sabadie Date: Mon, 23 Nov 2020 22:26:13 +0100 Subject: [PATCH 2/2] Prepare 3.5. --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fa91a6..181d4cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ +* [3.5](#35) * [3.4.2](#342) * [3.4.1](#341) * [3.4](#34) @@ -31,6 +32,13 @@ +# 3.5 + +> Nov 23rd, 2020 + +- Add support for [glam](https://crates.io/crates/glam) via the `"impl-glam"` feature gate. +- Support of `nalgebra-0.23`. + # 3.4.2 > Oct 24th, 2020 diff --git a/Cargo.toml b/Cargo.toml index a19f556..832b182 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "splines" -version = "3.4.2" +version = "3.5.0" license = "BSD-3-Clause" authors = ["Dimitri Sabadie "] description = "Spline interpolation made easy"