Skip to content

Commit de14bef

Browse files
chore: release v6.1.0 (#11003)
* chore: release * chore(release): correct crate versions per zc + public-dependency analysis - zebra-chain 12.0.0 -> 11.2.0 (additive only; over-bumped by feat(rpc)! propagation) - zebrad 6.0.1 -> 6.1.0 (new getstandardfee RPC = operator-facing minor) - zebra-state 10.1.1 -> 11.0.0 (rocksdb 0.24 reachable via ZebraDb public API = breaking; yank 10.1.0) - zebra-consensus 11.0.1 -> 12.0.0 (publicly re-exposes zebra-state -> its major cascades) zebra-rpc 12.0.0 (already major, absorbs the public-dep majors) and tower-fallback 0.2.43 unchanged. * docs(changelog): document dependency bumps for zebra-network, zebra-node-services, zebra-script, zebra-utils These crates get patch releases from bumped runtime dependency requirements (zebra-chain 11.2.0, and for zebra-utils also zebra-rpc 12.0.0 / zebra-node-services 9.1.1). tower-batch-control's 1.1.1 is dev-dependency-only (no consumer-visible change), so it gets no entry. --------- Co-authored-by: Marek <m@rek.onl>
1 parent a868b69 commit de14bef

16 files changed

Lines changed: 75 additions & 50 deletions

File tree

Cargo.lock

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5885,7 +5885,7 @@ dependencies = [
58855885

58865886
[[package]]
58875887
name = "tower-batch-control"
5888-
version = "1.1.0"
5888+
version = "1.1.1"
58895889
dependencies = [
58905890
"color-eyre",
58915891
"ed25519-zebra",
@@ -5908,7 +5908,7 @@ dependencies = [
59085908

59095909
[[package]]
59105910
name = "tower-fallback"
5911-
version = "0.2.42"
5911+
version = "0.2.43"
59125912
dependencies = [
59135913
"futures-core",
59145914
"pin-project",
@@ -7265,7 +7265,7 @@ dependencies = [
72657265

72667266
[[package]]
72677267
name = "zebra-chain"
7268-
version = "11.1.0"
7268+
version = "11.2.0"
72697269
dependencies = [
72707270
"bech32",
72717271
"bitflags",
@@ -7335,7 +7335,7 @@ dependencies = [
73357335

73367336
[[package]]
73377337
name = "zebra-consensus"
7338-
version = "11.0.0"
7338+
version = "12.0.0"
73397339
dependencies = [
73407340
"bellman",
73417341
"blake2b_simd",
@@ -7387,7 +7387,7 @@ dependencies = [
73877387

73887388
[[package]]
73897389
name = "zebra-network"
7390-
version = "10.1.0"
7390+
version = "10.1.1"
73917391
dependencies = [
73927392
"bitflags",
73937393
"byteorder",
@@ -7429,7 +7429,7 @@ dependencies = [
74297429

74307430
[[package]]
74317431
name = "zebra-node-services"
7432-
version = "9.1.0"
7432+
version = "9.1.1"
74337433
dependencies = [
74347434
"color-eyre",
74357435
"jsonrpsee-types",
@@ -7443,7 +7443,7 @@ dependencies = [
74437443

74447444
[[package]]
74457445
name = "zebra-rpc"
7446-
version = "11.1.0"
7446+
version = "12.0.0"
74477447
dependencies = [
74487448
"anyhow",
74497449
"base64 0.22.1",
@@ -7509,7 +7509,7 @@ dependencies = [
75097509

75107510
[[package]]
75117511
name = "zebra-script"
7512-
version = "10.1.0"
7512+
version = "10.1.1"
75137513
dependencies = [
75147514
"hex",
75157515
"lazy_static",
@@ -7527,7 +7527,7 @@ dependencies = [
75277527

75287528
[[package]]
75297529
name = "zebra-state"
7530-
version = "10.1.0"
7530+
version = "11.0.0"
75317531
dependencies = [
75327532
"bincode",
75337533
"chrono",
@@ -7604,7 +7604,7 @@ dependencies = [
76047604

76057605
[[package]]
76067606
name = "zebra-utils"
7607-
version = "9.1.0"
7607+
version = "9.1.1"
76087608
dependencies = [
76097609
"clap",
76107610
"color-eyre",
@@ -7626,7 +7626,7 @@ dependencies = [
76267626

76277627
[[package]]
76287628
name = "zebrad"
7629-
version = "6.0.0"
7629+
version = "6.1.0"
76307630
dependencies = [
76317631
"abscissa_core",
76327632
"anyhow",

tower-batch-control/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tower-batch-control"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
55
description = "Tower middleware for batch request processing"
66
# # Legal

tower-fallback/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tower-fallback"
3-
version = "0.2.42"
3+
version = "0.2.43"
44
authors.workspace = true
55
description = "A Tower service combinator that sends requests to a first service, then retries processing on a second fallback service if the first service errors."
66
license.workspace = true

zebra-chain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-chain"
3-
version = "11.1.0"
3+
version = "11.2.0"
44
authors.workspace = true
55
description = "Core Zcash data structures"
66
license.workspace = true

zebra-consensus/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-consensus"
3-
version = "11.0.0"
3+
version = "12.0.0"
44
authors.workspace = true
55
description = "Implementation of Zcash consensus checks"
66
license.workspace = true
@@ -65,13 +65,13 @@ libzcash_script = { workspace = true }
6565
zcash_script = { workspace = true }
6666
zcash_primitives = { workspace = true }
6767

68-
tower-fallback = { path = "../tower-fallback/", version = "0.2.42" }
69-
tower-batch-control = { path = "../tower-batch-control/", version = "1.1.0" }
68+
tower-fallback = { path = "../tower-fallback/", version = "0.2.43" }
69+
tower-batch-control = { path = "../tower-batch-control/", version = "1.1.1" }
7070

71-
zebra-script = { path = "../zebra-script", version = "10.1.0" }
72-
zebra-state = { path = "../zebra-state", version = "10.1.0" }
73-
zebra-node-services = { path = "../zebra-node-services", version = "9.1.0" }
74-
zebra-chain = { path = "../zebra-chain", version = "11.1.0" }
71+
zebra-script = { path = "../zebra-script", version = "10.1.1" }
72+
zebra-state = { path = "../zebra-state", version = "11.0.0" }
73+
zebra-node-services = { path = "../zebra-node-services", version = "9.1.1" }
74+
zebra-chain = { path = "../zebra-chain", version = "11.2.0" }
7575

7676
zcash_protocol.workspace = true
7777

zebra-network/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [10.1.1] - 2026-07-17
9+
10+
### Changed
11+
12+
- `zebra-chain` dependency bumped to `11.2.0`.
13+
814
## [10.1.0] - 2026-07-10
915

1016
### Changed

zebra-network/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-network"
3-
version = "10.1.0"
3+
version = "10.1.1"
44
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
55
description = "Networking code for Zebra"
66
# # Legal
@@ -85,7 +85,7 @@ howudoin = { workspace = true, optional = true }
8585
proptest = { workspace = true, optional = true }
8686
proptest-derive = { workspace = true, optional = true }
8787

88-
zebra-chain = { path = "../zebra-chain", version = "11.1.0", features = ["async-error"] }
88+
zebra-chain = { path = "../zebra-chain", version = "11.2.0", features = ["async-error"] }
8989

9090
[dev-dependencies]
9191
proptest = { workspace = true }

zebra-node-services/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [9.1.1] - 2026-07-17
9+
10+
### Changed
11+
12+
- `zebra-chain` dependency bumped to `11.2.0`.
13+
814
## [9.1.0] - 2026-07-10
915

1016
### Added

zebra-node-services/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-node-services"
3-
version = "9.1.0"
3+
version = "9.1.1"
44
authors.workspace = true
55
description = "The interfaces of some Zebra node services"
66
license.workspace = true
@@ -31,7 +31,7 @@ rpc-client = [
3131
]
3232

3333
[dependencies]
34-
zebra-chain = { path = "../zebra-chain" , version = "11.1.0" }
34+
zebra-chain = { path = "../zebra-chain" , version = "11.2.0" }
3535
tower = { workspace = true }
3636

3737
# Optional dependencies

zebra-rpc/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-rpc"
3-
version = "11.1.0"
3+
version = "12.0.0"
44
authors.workspace = true
55
description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface"
66
license.workspace = true
@@ -109,16 +109,16 @@ zcash_transparent = { workspace = true }
109109
# Test-only feature proptest-impl
110110
proptest = { workspace = true, optional = true }
111111

112-
zebra-chain = { path = "../zebra-chain", version = "11.1.0", features = [
112+
zebra-chain = { path = "../zebra-chain", version = "11.2.0", features = [
113113
"json-conversion",
114114
] }
115-
zebra-consensus = { path = "../zebra-consensus", version = "11.0.0" }
116-
zebra-network = { path = "../zebra-network", version = "10.1.0" }
117-
zebra-node-services = { path = "../zebra-node-services", version = "9.1.0", features = [
115+
zebra-consensus = { path = "../zebra-consensus", version = "12.0.0" }
116+
zebra-network = { path = "../zebra-network", version = "10.1.1" }
117+
zebra-node-services = { path = "../zebra-node-services", version = "9.1.1", features = [
118118
"rpc-client",
119119
] }
120-
zebra-script = { path = "../zebra-script", version = "10.1.0" }
121-
zebra-state = { path = "../zebra-state", version = "10.1.0" }
120+
zebra-script = { path = "../zebra-script", version = "10.1.1" }
121+
zebra-state = { path = "../zebra-state", version = "11.0.0" }
122122

123123
[build-dependencies]
124124
openrpsee = { workspace = true }

0 commit comments

Comments
 (0)