Skip to content

Commit

Permalink
Prepare for 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Mar 11, 2024
1 parent d36a29f commit c1d7b32
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### 0.4.3 (2024-03-11)

- Change (again) the 'precision' value used to distinguish between two contiguous bands.


### 0.4.2 (2024-03-11)

- Fix bug in `area` function. Note that given the use made of this function, it shouldn't have cause issues with the contours created.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contour-isobands"
version = "0.4.2"
version = "0.4.3"
authors = ["Matthieu Viry <matthieu.viry@cnrs.fr>"]
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add the following to your `Cargo.toml`:

```toml
[dependencies]
contour-isobands = "0.4.2"
contour-isobands = "0.4.3"
```

Then, you can use the `ContourBuilder` to compute isobands:
Expand Down Expand Up @@ -68,7 +68,7 @@ It can be serialized to geojson using the `geojson` feature:

```toml
[dependencies]
contour-isobands = { version = "0.4.2", features = ["geojson"] }
contour-isobands = { version = "0.4.3", features = ["geojson"] }
```

```rust
Expand Down Expand Up @@ -110,7 +110,7 @@ while the interior rings are oriented in the clockwise direction

```toml
[dependencies]
contour-isobands = { version = "0.4.2", features = ["parallel"] }
contour-isobands = { version = "0.4.3", features = ["parallel"] }
```

The `parallel` feature enables the use of the `rayon` crate to parallelize the computation of the isobands.
Expand Down

0 comments on commit c1d7b32

Please sign in to comment.