Bump version to 0.3

This commit is contained in:
Sean Bowe 2019-12-03 18:32:47 -07:00
parent 2e98dabcb8
commit 607958b8a2
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
2 changed files with 11 additions and 1 deletions

View File

@ -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]

View File

@ -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.