Skip to content

Commit 08c1d83

Browse files
committed
Prepare for 0.12.1 release
1 parent afaeecd commit 08c1d83

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog
22

3+
### 0.12.1 (2024-03-11)
4+
5+
- Fix bug in `area` function (fixes #11, thanks to @caspark). Note that given the use made of this function, it probably didn't cause issues with the contours created.
6+
37
### 0.12.0 (2023-12-02)
48

59
- Expose error type (fixes #9).

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contour"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["Matthieu Viry <[email protected]>"]
55
edition = "2021"
66

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Add this to your `Cargo.toml`:
1919

2020
```toml
2121
[dependencies]
22-
contour = "0.12.0"
22+
contour = "0.12.1"
2323
```
2424

2525
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
9090

9191
```toml
9292
[dependencies]
93-
contour = { version = "0.12.0", features = ["geojson"] }
93+
contour = { version = "0.12.1", features = ["geojson"] }
9494
```
9595

9696
```rust
@@ -150,7 +150,7 @@ If you want to use `f32` values instead, you need to specify the `f32` feature i
150150

151151
```toml
152152
[dependencies]
153-
contour = { version = "0.12.0", features = ["f32"] }
153+
contour = { version = "0.12.1", features = ["f32"] }
154154
```
155155

156156
## WASM demo

0 commit comments

Comments
 (0)