File tree Expand file tree Collapse file tree 9 files changed +21
-13
lines changed Expand file tree Collapse file tree 9 files changed +21
-13
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
6
6
[ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
8
## [ Unreleased]
9
+
10
+ ## [ 0.5.0] - 2021-03-26
9
11
### Added
10
12
- ` zcash_client_backend::address::RecipientAddress `
11
13
- ` zcash_client_backend::data_api ` module, containing the Data Access API.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " zcash_client_backend"
3
3
description = " APIs for creating shielded Zcash light clients"
4
- version = " 0.4 .0"
4
+ version = " 0.5 .0"
5
5
authors = [
6
6
" Jack Grigg <jack@z.cash>" ,
7
7
]
@@ -25,7 +25,7 @@ protobuf = "2.20"
25
25
rand_core = " 0.5.1"
26
26
subtle = " 2.2.3"
27
27
time = " 0.2"
28
- zcash_primitives = { version = " 0.4 " , path = " ../zcash_primitives" }
28
+ zcash_primitives = { version = " 0.5 " , path = " ../zcash_primitives" }
29
29
proptest = { version = " 0.10.1" , optional = true }
30
30
percent-encoding = " 2.1.0"
31
31
@@ -37,8 +37,8 @@ gumdrop = "0.8"
37
37
rand_core = " 0.5.1"
38
38
rand_xorshift = " 0.2"
39
39
tempfile = " 3.1.0"
40
- zcash_client_sqlite = { version = " 0.2 " , path = " ../zcash_client_sqlite" }
41
- zcash_proofs = { version = " 0.4 " , path = " ../zcash_proofs" }
40
+ zcash_client_sqlite = { version = " 0.3 " , path = " ../zcash_client_sqlite" }
41
+ zcash_proofs = { version = " 0.5 " , path = " ../zcash_proofs" }
42
42
43
43
[features ]
44
44
test-dependencies = [" proptest" , " zcash_primitives/test-dependencies" ]
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
6
6
[ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
8
## [ Unreleased]
9
+
10
+ ## [ 0.3.0] - 2021-03-26
9
11
This release contains a major refactor of the APIs to leverage the new Data
10
12
Access API in the ` zcash_client_backend ` crate. API names are almost all the
11
13
same as before, but have been reorganized.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " zcash_client_sqlite"
3
3
description = " An SQLite-based Zcash light client"
4
- version = " 0.2.1 "
4
+ version = " 0.3.0 "
5
5
authors = [
6
6
" Jack Grigg <jack@z.cash>" ,
7
7
]
@@ -21,13 +21,13 @@ protobuf = "2.20"
21
21
rand_core = " 0.5.1"
22
22
rusqlite = { version = " 0.24" , features = [" bundled" , " time" ] }
23
23
time = " 0.2"
24
- zcash_client_backend = { version = " 0.4 " , path = " ../zcash_client_backend" }
25
- zcash_primitives = { version = " 0.4 " , path = " ../zcash_primitives" }
24
+ zcash_client_backend = { version = " 0.5 " , path = " ../zcash_client_backend" }
25
+ zcash_primitives = { version = " 0.5 " , path = " ../zcash_primitives" }
26
26
27
27
[dev-dependencies ]
28
28
rand_core = " 0.5.1"
29
29
tempfile = " 3"
30
- zcash_proofs = { version = " 0.4 " , path = " ../zcash_proofs" }
30
+ zcash_proofs = { version = " 0.5 " , path = " ../zcash_proofs" }
31
31
32
32
[features ]
33
33
mainnet = []
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ edition = "2018"
10
10
11
11
[dependencies ]
12
12
blake2b_simd = " 0.5"
13
- zcash_primitives = { version = " 0.4.0 " , path = " ../zcash_primitives" , features = [" zfuture" ] }
13
+ zcash_primitives = { version = " 0.5 " , path = " ../zcash_primitives" , features = [" zfuture" ] }
14
14
15
15
[dev-dependencies ]
16
16
ff = " 0.8"
17
17
jubjub = " 0.5.1"
18
18
rand_core = " 0.5.1"
19
- zcash_proofs = { version = " 0.4.0 " , path = " ../zcash_proofs" }
19
+ zcash_proofs = { version = " 0.5 " , path = " ../zcash_proofs" }
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
6
6
[ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
8
## [ Unreleased]
9
+
10
+ ## [ 0.5.0] - 2021-03-26
9
11
### Added
10
12
- Support for implementing candidate ZIPs before they have been selected for a
11
13
network upgrade, behind the ` zfuture ` feature flag.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " zcash_primitives"
3
3
description = " Rust implementations of the Zcash primitives"
4
- version = " 0.4 .0"
4
+ version = " 0.5 .0"
5
5
authors = [
6
6
" Jack Grigg <jack@z.cash>" ,
7
7
]
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
6
6
[ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
8
## [ Unreleased]
9
+
10
+ ## [ 0.5.0] - 2021-03-26
9
11
### Added
10
12
- ` zcash_proofs::ZcashParameters `
11
13
- ` zcash_proofs::parse_parameters `
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " zcash_proofs"
3
3
description = " Zcash zk-SNARK circuits and proving APIs"
4
- version = " 0.4 .0"
4
+ version = " 0.5 .0"
5
5
authors = [
6
6
" Jack Grigg <jack@z.cash>" ,
7
7
]
@@ -27,7 +27,7 @@ lazy_static = "1"
27
27
minreq = { version = " 2" , features = [" https" ], optional = true }
28
28
rand_core = " 0.5.1"
29
29
wagyu-zcash-parameters = { version = " 0.2" , optional = true }
30
- zcash_primitives = { version = " 0.4 " , path = " ../zcash_primitives" }
30
+ zcash_primitives = { version = " 0.5 " , path = " ../zcash_primitives" }
31
31
32
32
[dev-dependencies ]
33
33
criterion = " 0.3"
You can’t perform that action at this time.
0 commit comments