From 24cd0d7fca8d81ea63c20ee3a39446579cbadfe1 Mon Sep 17 00:00:00 2001 From: nsmryan Date: Sun, 30 Sep 2018 10:47:21 -0400 Subject: [PATCH 1/4] bumped version numbers in examples for splines dependancy --- examples/01-hello-world/Cargo.toml | 4 ++-- examples/02-serialization/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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"] From 0dcfe4841538eb9768cbdabe78676050b766a2b1 Mon Sep 17 00:00:00 2001 From: nsmryan Date: Sun, 30 Sep 2018 10:37:08 -0400 Subject: [PATCH 2/4] minor spelling corrections --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index b2d3485..a4849ce 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -83,11 +83,11 @@ //! - **[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. #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(not(feature = "std"), feature(alloc))] From 882b9e7b34a7afb2a0d5a8d816c0d890f5689509 Mon Sep 17 00:00:00 2001 From: nsmryan Date: Sun, 30 Sep 2018 10:38:59 -0400 Subject: [PATCH 3/4] minor corrections in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. From 766066d9edbafc6d4f932ad2e5c36917ea14ab4e Mon Sep 17 00:00:00 2001 From: Dimitri Sabadie Date: Sun, 30 Sep 2018 21:38:49 +0200 Subject: [PATCH 4/4] 0.2.2. --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) 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 42cb008..a6061d6 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"