From fcab497d3e6d84502035624116a78bd9448ec870 Mon Sep 17 00:00:00 2001 From: Matthieu Viry Date: Sat, 2 Dec 2023 22:23:17 +0100 Subject: [PATCH] Prepare for 0.12.0 release --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be985f1..a2ae53a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Changelog -### Unreleased changes +### 0.12.0 (2023-12-02) - Expose error type (fixes #9). diff --git a/Cargo.toml b/Cargo.toml index c61d178..37c6119 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contour" -version = "0.11.0" +version = "0.12.0" authors = ["Matthieu Viry "] edition = "2021" diff --git a/README.md b/README.md index 2c75764..4b4229d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -contour = "0.11.0" +contour = "0.12.0" ``` and this to your crate root: @@ -90,7 +90,7 @@ The `geojson` feature is not enabled by default, so you need to specify it in yo ```toml [dependencies] -contour = { version = "0.11.0", features = ["geojson"] } +contour = { version = "0.12.0", features = ["geojson"] } ``` ```rust @@ -150,7 +150,7 @@ If you want to use `f32` values instead, you need to specify the `f32` feature i ```toml [dependencies] -contour = { version = "0.11.0", features = ["f32"] } +contour = { version = "0.12.0", features = ["f32"] } ``` ## WASM demo