Skip to content

Commit f234f0b

Browse files
authored
Merge pull request #364 from str4d/release-0.5
Release 0.5.0
2 parents 60ffeb7 + 4ff0a81 commit f234f0b

File tree

9 files changed

+21
-13
lines changed

9 files changed

+21
-13
lines changed

zcash_client_backend/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.5.0] - 2021-03-26
911
### Added
1012
- `zcash_client_backend::address::RecipientAddress`
1113
- `zcash_client_backend::data_api` module, containing the Data Access API.

zcash_client_backend/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zcash_client_backend"
33
description = "APIs for creating shielded Zcash light clients"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
authors = [
66
"Jack Grigg <jack@z.cash>",
77
]
@@ -25,7 +25,7 @@ protobuf = "2.20"
2525
rand_core = "0.5.1"
2626
subtle = "2.2.3"
2727
time = "0.2"
28-
zcash_primitives = { version = "0.4", path = "../zcash_primitives" }
28+
zcash_primitives = { version = "0.5", path = "../zcash_primitives" }
2929
proptest = { version = "0.10.1", optional = true }
3030
percent-encoding = "2.1.0"
3131

@@ -37,8 +37,8 @@ gumdrop = "0.8"
3737
rand_core = "0.5.1"
3838
rand_xorshift = "0.2"
3939
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" }
4242

4343
[features]
4444
test-dependencies = ["proptest", "zcash_primitives/test-dependencies"]

zcash_client_sqlite/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.3.0] - 2021-03-26
911
This release contains a major refactor of the APIs to leverage the new Data
1012
Access API in the `zcash_client_backend` crate. API names are almost all the
1113
same as before, but have been reorganized.

zcash_client_sqlite/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zcash_client_sqlite"
33
description = "An SQLite-based Zcash light client"
4-
version = "0.2.1"
4+
version = "0.3.0"
55
authors = [
66
"Jack Grigg <jack@z.cash>",
77
]
@@ -21,13 +21,13 @@ protobuf = "2.20"
2121
rand_core = "0.5.1"
2222
rusqlite = { version = "0.24", features = ["bundled", "time"] }
2323
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" }
2626

2727
[dev-dependencies]
2828
rand_core = "0.5.1"
2929
tempfile = "3"
30-
zcash_proofs = { version = "0.4", path = "../zcash_proofs" }
30+
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
3131

3232
[features]
3333
mainnet = []

zcash_extensions/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ edition = "2018"
1010

1111
[dependencies]
1212
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"] }
1414

1515
[dev-dependencies]
1616
ff = "0.8"
1717
jubjub = "0.5.1"
1818
rand_core = "0.5.1"
19-
zcash_proofs = { version = "0.4.0", path = "../zcash_proofs" }
19+
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }

zcash_primitives/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.5.0] - 2021-03-26
911
### Added
1012
- Support for implementing candidate ZIPs before they have been selected for a
1113
network upgrade, behind the `zfuture` feature flag.

zcash_primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zcash_primitives"
33
description = "Rust implementations of the Zcash primitives"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
authors = [
66
"Jack Grigg <jack@z.cash>",
77
]

zcash_proofs/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.5.0] - 2021-03-26
911
### Added
1012
- `zcash_proofs::ZcashParameters`
1113
- `zcash_proofs::parse_parameters`

zcash_proofs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zcash_proofs"
33
description = "Zcash zk-SNARK circuits and proving APIs"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
authors = [
66
"Jack Grigg <jack@z.cash>",
77
]
@@ -27,7 +27,7 @@ lazy_static = "1"
2727
minreq = { version = "2", features = ["https"], optional = true }
2828
rand_core = "0.5.1"
2929
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" }
3131

3232
[dev-dependencies]
3333
criterion = "0.3"

0 commit comments

Comments
 (0)