Skip to content

Commit 2df4497

Browse files
authored
Merge pull request #1615 from zcash/release/zcash_primitives-0.20.0
Release zcash_primitives version 0.20.0
2 parents 9c387fe + aa3ee68 commit 2df4497

File tree

13 files changed

+48
-33
lines changed

13 files changed

+48
-33
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ categories = ["cryptography::cryptocurrencies"]
3434
# Intra-workspace dependencies
3535
equihash = { version = "0.2", path = "components/equihash" }
3636
zcash_address = { version = "0.6", path = "components/zcash_address" }
37-
zcash_client_backend = { version = "0.14", path = "zcash_client_backend" }
37+
zcash_client_backend = { version = "0.15", path = "zcash_client_backend" }
3838
zcash_encoding = { version = "0.2.1", path = "components/zcash_encoding" }
39-
zcash_keys = { version = "0.4", path = "zcash_keys" }
39+
zcash_keys = { version = "0.5", path = "zcash_keys" }
4040
zcash_protocol = { version = "0.4.1", path = "components/zcash_protocol" }
4141
zip321 = { version = "0.2", path = "components/zip321" }
4242

4343
zcash_note_encryption = "0.4"
44-
zcash_primitives = { version = "0.19", path = "zcash_primitives", default-features = false }
45-
zcash_proofs = { version = "0.19", path = "zcash_proofs", default-features = false }
44+
zcash_primitives = { version = "0.20", path = "zcash_primitives", default-features = false }
45+
zcash_proofs = { version = "0.20", path = "zcash_proofs", default-features = false }
4646

4747
# Shielded protocols
4848
bellman = { version = "0.14", default-features = false, features = ["groth16"] }

supply-chain/imports.lock

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -259,18 +259,18 @@ user-login = "str4d"
259259
user-name = "Jack Grigg"
260260

261261
[[publisher.zcash_client_backend]]
262-
version = "0.14.0"
263-
when = "2024-10-04"
262+
version = "0.15.0"
263+
when = "2024-11-14"
264264
user-id = 169181
265265
user-login = "nuttycom"
266266
user-name = "Kris Nuttycombe"
267267

268268
[[publisher.zcash_client_sqlite]]
269-
version = "0.12.2"
270-
when = "2024-10-22"
271-
user-id = 6289
272-
user-login = "str4d"
273-
user-name = "Jack Grigg"
269+
version = "0.13.0"
270+
when = "2024-11-14"
271+
user-id = 169181
272+
user-login = "nuttycom"
273+
user-name = "Kris Nuttycombe"
274274

275275
[[publisher.zcash_encoding]]
276276
version = "0.2.0"
@@ -293,8 +293,8 @@ user-login = "str4d"
293293
user-name = "Jack Grigg"
294294

295295
[[publisher.zcash_keys]]
296-
version = "0.4.0"
297-
when = "2024-10-04"
296+
version = "0.5.0"
297+
when = "2024-11-14"
298298
user-id = 169181
299299
user-login = "nuttycom"
300300
user-name = "Kris Nuttycombe"
@@ -307,18 +307,18 @@ user-login = "nuttycom"
307307
user-name = "Kris Nuttycombe"
308308

309309
[[publisher.zcash_primitives]]
310-
version = "0.19.0"
311-
when = "2024-10-02"
312-
user-id = 6289
313-
user-login = "str4d"
314-
user-name = "Jack Grigg"
310+
version = "0.20.0"
311+
when = "2024-11-14"
312+
user-id = 169181
313+
user-login = "nuttycom"
314+
user-name = "Kris Nuttycombe"
315315

316316
[[publisher.zcash_proofs]]
317-
version = "0.19.0"
318-
when = "2024-10-02"
319-
user-id = 6289
320-
user-login = "str4d"
321-
user-name = "Jack Grigg"
317+
version = "0.20.0"
318+
when = "2024-11-14"
319+
user-id = 169181
320+
user-login = "nuttycom"
321+
user-name = "Kris Nuttycombe"
322322

323323
[[publisher.zcash_protocol]]
324324
version = "0.4.1"

zcash_client_backend/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this library adheres to Rust's notion of
77

88
## [Unreleased]
99

10+
## [0.15.0] - 2024-11-14
11+
1012
### Added
1113
- `zcash_client_backend::data_api`:
1214
- `Progress`
@@ -33,6 +35,7 @@ and this library adheres to Rust's notion of
3335

3436
### Changed
3537
- MSRV is now 1.77.0.
38+
- Migrated to `zcash_primitives 0.20.0`, `zcash_keys 0.5.0`.
3639
- Migrated to `arti-client 0.23`.
3740
- `zcash_client_backend::data_api`:
3841
- `InputSource` has an added method `get_account_metadata`

zcash_client_backend/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_client_backend"
33
description = "APIs for creating shielded Zcash light clients"
4-
version = "0.14.0"
4+
version = "0.15.0"
55
authors = [
66
"Jack Grigg <jack@z.cash>",
77
"Kris Nuttycombe <kris@electriccoin.co>"

zcash_client_sqlite/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ and this library adheres to Rust's notion of
77

88
## [Unreleased]
99

10+
## [0.13.0] - 2024-11-14
11+
1012
### Added
1113
- Exposed `AccountId::from_u32` and `AccountId::as_u32` conversions under the
1214
`unstable` feature flag.
1315

1416
### Changed
1517
- MSRV is now 1.77.0.
18+
- Migrated to `zcash_primitives 0.20`, `zcash_keys 0.5`,
19+
`zcash_client_backend 0.15`.
1620
- Migrated from `schemer` to our fork `schemerz`.
1721
- Migrated to `rusqlite 0.32`.
1822
- `error::SqliteClientError` has additional variant `NoteFilterInvalid`

zcash_client_sqlite/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_client_sqlite"
33
description = "An SQLite-based Zcash light client"
4-
version = "0.12.2"
4+
version = "0.13.0"
55
authors = [
66
"Jack Grigg <jack@z.cash>",
77
"Kris Nuttycombe <kris@electriccoin.co>"

zcash_keys/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ and this library adheres to Rust's notion of
66

77
## [Unreleased]
88

9+
## [0.5.0] - 2024-11-14
10+
911
### Changed
12+
- Migrated to `zcash_primitives 0.20.0`
1013
- MSRV is now 1.77.0.
1114

1215
## [0.4.0] - 2024-10-04

zcash_keys/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_keys"
33
description = "Zcash key and address management"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
authors = [
66
"Jack Grigg <jack@z.cash>",
77
"Kris Nuttycombe <kris@electriccoin.co>"

zcash_primitives/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this library adheres to Rust's notion of
77

88
## [Unreleased]
99

10+
## [0.20.0] - 2024-11-14
11+
1012
### Added
1113
- A new feature flag, `non-standard-fees`, has been added. This flag is now
1214
required in order to make use of any types or methods that enable non-standard

0 commit comments

Comments
 (0)