Skip to content

Commit d3e6909

Browse files
v2.1.0 release
1 parent 25741a8 commit d3e6909

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "interp"
3-
version = "2.0.2"
3+
version = "2.1.0"
44
authors = ["Lucas Jansen <7199136+staticintlucas@users.noreply.github.com>"]
55
description = "A Rust implementation of Matlab's interp1 function"
66
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Add `interp` to your `Cargo.toml` file:
2424

2525
```toml
2626
[dependencies]
27-
interp = "2.0"
27+
interp = "2.1"
2828
```
2929

3030
## Example
@@ -47,7 +47,7 @@ let xp = [0.1, 0.65, 0.9];
4747
assert_eq!(interp_array(&x, &y, &xp, &InterpMode::default()), [0.5, 3.25, 3.75]);
4848
```
4949

50-
> [!WARNING]
50+
> [!WARNING]
5151
> `x` is expected to be strictly increasing, but this is not explicitly enforced. However, if the sequence `x` is not strictly increasing, interpolation results are meaningless.
5252
5353
Full API documentation is available on [docs.rs][docs].

0 commit comments

Comments
 (0)