Skip to content

Commit

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

### 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.


### 0.4.1 (2024-01-15)

- Fix README.


### 0.4.0 (2024-01-15)

- Change the 'precision' value used to distinguish between two contiguous bands.
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.1"
version = "0.4.2"
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.1"
contour-isobands = "0.4.2"
```

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.1", features = ["geojson"] }
contour-isobands = { version = "0.4.2", 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.1", features = ["parallel"] }
contour-isobands = { version = "0.4.2", 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 274a3e5

Please sign in to comment.