From af5095ab6291a42534319345e54307e7609c49d4 Mon Sep 17 00:00:00 2001 From: Matthieu Viry Date: Mon, 20 Mar 2023 11:42:25 +0100 Subject: [PATCH] Prepare for 0.3.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 682e01e..27cd6d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -### Unreleased +### 0.3.0 (2023-03-20) - Add new `par_contours` method to `ContourBuilder` to generate contours in parallel (only available with the `parallel` feature flag). diff --git a/Cargo.toml b/Cargo.toml index 5829800..aff0de9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contour-isobands" -version = "0.2.0" +version = "0.3.0" authors = ["Matthieu Viry "] edition = "2021" license = "AGPL-3.0-or-later" diff --git a/README.md b/README.md index 3b201aa..d065474 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -contour-isobands = "0.2.0" +contour-isobands = "0.3.0" ``` Then, you can use the `ContourBuilder` to compute isobands: @@ -68,7 +68,7 @@ It can be serialized to geojson using the `geojson` feature: ```toml [dependencies] -contour-isobands = { version = "0.2.0", features = ["geojson"] } +contour-isobands = { version = "0.3.0", features = ["geojson"] } ``` ```rust @@ -110,7 +110,7 @@ while the interior rings are oriented in the clockwise direction ```toml [dependencies] -contour-isobands = { version = "0.2.0", features = ["parallel"] } +contour-isobands = { version = "0.3.0", features = ["parallel"] } ``` The `parallel` feature enables the use of the `rayon` crate to parallelize the computation of the isobands.