Browse Source

Bump version to 0.4.0

master
Jack Grigg 6 years ago
parent
commit
526676ecfc
No known key found for this signature in database
GPG Key ID: 1B8D649257DB0829
  1. 2
      Cargo.toml
  2. 6
      README.md

2
Cargo.toml

@ -1,6 +1,6 @@
[package] [package]
name = "ff" name = "ff"
version = "0.3.0" version = "0.4.0"
authors = ["Sean Bowe <[email protected]>"] authors = ["Sean Bowe <[email protected]>"]
description = "Library for building and interfacing with finite fields" description = "Library for building and interfacing with finite fields"
documentation = "https://docs.rs/ff/" documentation = "https://docs.rs/ff/"

6
README.md

@ -12,10 +12,10 @@ Add the `ff` crate to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
ff = "0.3" ff = "0.4"
``` ```
The `ff` crate contains `Field`, `PrimeField`, `PrimeFieldRepr` and `SqrtField` traits. See the **[documentation](https://docs.rs/ff/0.3.0/ff/)** for more. The `ff` crate contains `Field`, `PrimeField`, `PrimeFieldRepr` and `SqrtField` traits. See the **[documentation](https://docs.rs/ff/0.4.0/ff/)** for more.
### #![derive(PrimeField)] ### #![derive(PrimeField)]
@ -25,7 +25,7 @@ First, enable the `derive` crate feature:
```toml ```toml
[dependencies] [dependencies]
ff = { version = "0.3", features = ["derive"] } ff = { version = "0.4", features = ["derive"] }
``` ```
And then use the macro like so: And then use the macro like so:

Loading…
Cancel
Save