This commit is contained in:
Dimitri Sabadie 2019-09-22 19:15:57 +02:00
parent 8e6af2cee9
commit e76f18ac5b
No known key found for this signature in database
GPG Key ID: DE58C386A8DB2883
2 changed files with 44 additions and 19 deletions

View File

@ -1,4 +1,26 @@
## 0.2.3
# 1.0
> Sun Sep 22th 2019
## Major changes
- Make `Spline::clamped_sample` failible via `Option` instead of panicking.
- Add support for polymorphic sampling type.
## Minor changes
- Add the `std` feature (and hence support for `no_std`).
- Add `impl-nalgebra` feature.
- Add `impl-cgmath` feature.
- Add support for adding keys to splines.
- Add support for removing keys from splines.
## Patch changes
- Migrate to Rust 2018.
- Documentation typo fixes.
# 0.2.3
> Sat 13th October 2018
@ -6,14 +28,14 @@
crate.
- Enhance the documentation.
## 0.2.2
# 0.2.2
> Sun 30th September 2018
- Bump version numbers (`splines-0.2`) in examples.
- Fix several typos in the documentation.
## 0.2.1
# 0.2.1
> Thu 20th September 2018
@ -28,7 +50,7 @@
dependency.
- Enhance the documentation.
## 0.1.1
# 0.1.1
> Wed 8th August 2018

View File

@ -1,6 +1,6 @@
[package]
name = "splines"
version = "1.0.0-rc.3"
version = "1.0.0"
license = "BSD-3-Clause"
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
description = "Spline interpolation made easy"
@ -33,3 +33,6 @@ nalgebra = { version = ">=0.14, <0.19", optional = true }
num-traits = { version = "0.2", optional = true }
serde = { version = "1", optional = true }
serde_derive = { version = "1", optional = true }
[package.metadata.docs.rs]
all-features = true