Skip to content

Commit

Permalink
Fix README and prepare for 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Jan 15, 2024
1 parent 40ab83c commit a214567
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### 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.0"
version = "0.4.1"
authors = ["Matthieu Viry <[email protected]>"]
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.3.1"
contour-isobands = "0.4.1"
```

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.3.1", features = ["geojson"] }
contour-isobands = { version = "0.4.1", 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.3.1", features = ["parallel"] }
contour-isobands = { version = "0.4.1", 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 a214567

Please sign in to comment.