diff --git a/CHANGELOG.md b/CHANGELOG.md index 2222cb2..dcf8784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ -# 0.2.1 +## 0.2.2 + +> Sun 30th September 2018 + + - Bump version numbers (`splines-0.2`) in examples. + - Fix several typos in the documentation. + +## 0.2.1 > Thu 20th September 2018 diff --git a/Cargo.toml b/Cargo.toml index ff3517d..a559b1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "splines" -version = "0.2.1" +version = "0.2.2" license = "BSD-3-Clause" authors = ["Dimitri Sabadie "] description = "Spline interpolation made easy" diff --git a/README.md b/README.md index 0c6e895..284da63 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ This crate has features! Here’s a comprehensive list of what you can enable: - **[cgmath](https://crates.io/crates/cgmath) implementors** + Adds some usefull implementations of `Interpolate` for some cgmath types. + Enable with the `"impl-cgmath"` feature. - - **Standard library / no stdandard library.** + - **Standard library / no standard library.** + It’s possible to compile against the standard library or go on your own without it. + Compiling with the standard library is enabled by default. - + Use `defaut-features = []` in your `Cargo.toml` to disable. - + Enable explicitly with the `"std"` feataure. + + Use `default-features = []` in your `Cargo.toml` to disable. + + Enable explicitly with the `"std"` feature. diff --git a/examples/01-hello-world/Cargo.toml b/examples/01-hello-world/Cargo.toml index d11070f..9dc610a 100644 --- a/examples/01-hello-world/Cargo.toml +++ b/examples/01-hello-world/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hello-world" -version = "0.1.0" +version = "0.2.0" authors = ["Dimitri Sabadie "] [dependencies] -splines = "0.1" +splines = "0.2" diff --git a/examples/02-serialization/Cargo.toml b/examples/02-serialization/Cargo.toml index 0c3e61a..6a39ab8 100644 --- a/examples/02-serialization/Cargo.toml +++ b/examples/02-serialization/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "serialization" -version = "0.1.0" +version = "0.2.0" authors = ["Dimitri Sabadie "] [dependencies] serde_json = "1" [dependencies.splines] -version = "0.1" +version = "0.2" features = ["serialization"] diff --git a/src/lib.rs b/src/lib.rs index ab215c9..27c0240 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -90,7 +90,7 @@ //! + It’s possible to compile against the standard library or go on your own without it. //! + Compiling with the standard library is enabled by default. //! + Use `default-features = []` in your `Cargo.toml` to disable. -//! + Enable explicitly with the `"std"` feataure. +//! + Enable explicitly with the `"std"` feature. #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(not(feature = "std"), feature(alloc))]