diff --git a/Cargo.toml b/Cargo.toml index 19ba0f2..1bac857 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://github.com/zkcrypto/jubjub" license = "MIT/Apache-2.0" name = "jubjub" repository = "https://github.com/zkcrypto/jubjub" -version = "0.2.0" +version = "0.3.0" edition = "2018" [dependencies.bls12_381] diff --git a/RELEASES.md b/RELEASES.md index 5af6b07..45db61c 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,13 @@ +# 0.3.0 + +This release now depends on the `bls12_381` crate, which exposes the `Fq` field type that we re-export. + +* The `Fq` and `Fr` field types now have better constant function support for various operations and constructors. +* We no longer depend on the `byteorder` crate. +* We've bumped our `rand_core` dev-dependency up to 0.5. +* We've removed the `std` and `nightly` features. +* We've bumped our dependency of `subtle` up to `^2.2.1`. + # 0.2.0 This release switches to `subtle 2.1` to bring in the `CtOption` type, and also makes a few useful API changes.