Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ebfull committed May 4, 2022
1 parent d88e355 commit 512b8a8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Expand Up @@ -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]
Expand Down
3 changes: 3 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -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)]
Expand Down

0 comments on commit 512b8a8

Please sign in to comment.