4 Commits
0.2.1 ... 0.2.2

Author SHA1 Message Date
766066d9ed 0.2.2. 2018-09-30 21:38:49 +02:00
882b9e7b34 minor corrections in README.md 2018-09-30 21:32:59 +02:00
0dcfe48415 minor spelling corrections 2018-09-30 21:32:59 +02:00
24cd0d7fca bumped version numbers in examples for splines dependancy 2018-09-30 21:32:22 +02:00
6 changed files with 19 additions and 12 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "splines"
version = "0.2.1"
version = "0.2.2"
license = "BSD-3-Clause"
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
description = "Spline interpolation made easy"

View File

@ -15,8 +15,8 @@ This crate has features! Heres 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.**
+ Its 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.

View File

@ -1,7 +1,7 @@
[package]
name = "hello-world"
version = "0.1.0"
version = "0.2.0"
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
[dependencies]
splines = "0.1"
splines = "0.2"

View File

@ -1,11 +1,11 @@
[package]
name = "serialization"
version = "0.1.0"
version = "0.2.0"
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
[dependencies]
serde_json = "1"
[dependencies.splines]
version = "0.1"
version = "0.2"
features = ["serialization"]

View File

@ -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.**
//! + Its 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))]