diff --git a/CHANGELOG.md b/CHANGELOG.md index 510e769..5332a6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ +* [3.5.4](#354) * [3.5.3](#353) * [3.5.2](#352) * [3.5.1](#351) @@ -35,6 +36,12 @@ +# 3.5.4 + +> Feb 27, 2021 + +- Support of `cgmath-0.18`. + # 3.5.3 > Jan 16, 2021 diff --git a/Cargo.toml b/Cargo.toml index d013fef..bbd20bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "splines" -version = "3.5.3" +version = "3.5.4" license = "BSD-3-Clause" authors = ["Dimitri Sabadie "] description = "Spline interpolation made easy" @@ -28,7 +28,7 @@ serialization = ["serde", "serde_derive"] std = [] [dependencies] -cgmath = { version = "0.17", optional = true } +cgmath = { version = ">=0.17, <0.19", optional = true } glam = { version = ">=0.10, <0.12", optional = true } nalgebra = { version = ">=0.21, <0.25", optional = true } num-traits = { version = "0.2", optional = true }