diff --git a/CHANGELOG.md b/CHANGELOG.md index 404fca5..2222cb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.2.1 + +> Thu 20th September 2018 + + - Enhance the features documentation. + # 0.2 > Thu 6th September 2018 diff --git a/Cargo.toml b/Cargo.toml index e6ce517..42cb008 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "splines" -version = "0.2.0" +version = "0.2.1" license = "BSD-3-Clause" authors = ["Dimitri Sabadie "] description = "Spline interpolation made easy" diff --git a/README.md b/README.md index c4a7d66..0c6e895 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,10 @@ This crate has features! Here’s a comprehensive list of what you can enable: - **Serialization / deserialization.** + This feature implements both the `Serialize` and `Deserialize` traits from `serde`. + Enable with the `"serialization"` feature. - - **Standard library / no stdandard library** + - **[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.** + 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. diff --git a/src/lib.rs b/src/lib.rs index b00501c..b2d3485 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -80,10 +80,10 @@ //! + This feature implements both the `Serialize` and `Deserialize` traits from `serde` for all //! types exported by this crate. //! + Enable with the `"serialization"` feature. -//! - **[cgmath](https://crates.io/crates/cgmath) implementors +//! - **[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 stdandard 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.