diff --git a/Cargo.toml b/Cargo.toml index f035495..c9cff9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,23 +10,23 @@ homepage = "https://github.com/zkcrypto/jubjub" license = "MIT/Apache-2.0" name = "jubjub" repository = "https://github.com/zkcrypto/jubjub" -version = "0.8.0" +version = "0.9.0" edition = "2021" [dependencies.bitvec] -version = "0.22" +version = "1" default-features = false [dependencies.bls12_381] -version = "0.6" +version = "0.7" default-features = false [dependencies.ff] -version = "0.11" +version = "0.12" default-features = false [dependencies.group] -version = "0.11" +version = "0.12" default-features = false [dependencies.rand_core] diff --git a/RELEASES.md b/RELEASES.md index 8f3d97f..63d35a3 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,8 @@ +# 0.9.0 + ## Changed - Bumped MSRV to `1.56.0` +- Bumped dependencies to `bls12_381 0.7`, `ff 0.12`, `group 0.12`, `bitvec 1.0`. # 0.8.0 ## Added diff --git a/src/lib.rs b/src/lib.rs index 8a83c39..0fa9291 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ #![no_std] // Catch documentation errors caused by code changes. -#![deny(broken_intra_doc_links)] +#![deny(rustdoc::broken_intra_doc_links)] #![deny(missing_debug_implementations)] #![deny(missing_docs)] #![deny(unsafe_code)]