Skip to content

Commit

Permalink
chore: Release polynomial version 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gifnksm committed Sep 30, 2023
1 parent 9f491c9 commit 21c1569
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polynomial"
version = "0.2.5"
version = "0.2.6"
edition = "2021"
rust-version = "1.70.0"
authors = ["gifnksm <makoto.nksm+github@gmail.com>"]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
polynomial = "0.2.5"
polynomial = "0.2.6"
```

## no_std environments
Expand All @@ -28,14 +28,14 @@ Simply add the `default-features = false` attribute to `Cargo.toml`:

```toml
[dependencies]
polynomial = {version = "0.2.5", default-features = false}
polynomial = {version = "0.2.6", default-features = false}
```

If you want to use floating point numbers in a `no_std` environment, you can enable the `libm` feature:

```toml
[dependencies]
polynomial = {version = "0.2.5", default-features = false, features = ["libm"]}
polynomial = {version = "0.2.6", default-features = false, features = ["libm"]}
```

## Minimum supported Rust version (MSRV)
Expand Down

0 comments on commit 21c1569

Please sign in to comment.