Skip to content

Commit

Permalink
Merge pull request zkcrypto#82 from zkcrypto/release-0.12.0
Browse files Browse the repository at this point in the history
Release 0.12.0
  • Loading branch information
ebfull committed May 4, 2022
2 parents 6e92161 + c9d1b5f commit 9b9a8d9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this library adheres to Rust's notion of

## [Unreleased]

## [0.12.0] - 2022-05-04

### Changed

- MSRV is now 1.56.0.
- Bumped `bitvec` to 1.0.

## [0.11.1] - 2022-05-04

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ff"
version = "0.11.1"
version = "0.12.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
Expand All @@ -11,12 +11,12 @@ documentation = "https://docs.rs/ff/"
homepage = "https://github.com/zkcrypto/ff"
license = "MIT/Apache-2.0"
repository = "https://github.com/zkcrypto/ff"
edition = "2018"
edition = "2021"

[dependencies]
bitvec = { version = "1", default-features = false, optional = true }
byteorder = { version = "1", default-features = false, optional = true }
ff_derive = { version = "0.11.1", path = "ff_derive", optional = true }
ff_derive = { version = "0.12", path = "ff_derive", optional = true }
rand_core = { version = "0.6", default-features = false }
subtle = { version = "2.2.1", default-features = false, features = ["i128"] }

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add the `ff` crate to your `Cargo.toml`:

```toml
[dependencies]
ff = "0.11"
ff = "0.12"
```

The `ff` crate contains the `Field` and `PrimeField` traits.
Expand All @@ -32,7 +32,7 @@ First, enable the `derive` crate feature:

```toml
[dependencies]
ff = { version = "0.11", features = ["derive"] }
ff = { version = "0.12", features = ["derive"] }
```

And then use the macro like so:
Expand Down
4 changes: 2 additions & 2 deletions ff_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ff_derive"
version = "0.11.1"
version = "0.12.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
Expand All @@ -10,7 +10,7 @@ documentation = "https://docs.rs/ff-derive/"
homepage = "https://github.com/zkcrypto/ff"
license = "MIT/Apache-2.0"
repository = "https://github.com/zkcrypto/ff"
edition = "2018"
edition = "2021"

[features]
# enabled when generating bitvec code utilizing the version of ff's bitvec
Expand Down

0 comments on commit 9b9a8d9

Please sign in to comment.