Skip to content

Commit 067e0b4

Browse files
authored
bump zebra-chain and dependent crates (#10234)
1 parent a2e43b7 commit 067e0b4

File tree

14 files changed

+56
-40
lines changed

14 files changed

+56
-40
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6973,7 +6973,7 @@ dependencies = [
69736973

69746974
[[package]]
69756975
name = "zebra-chain"
6976-
version = "3.1.0"
6976+
version = "4.0.0"
69776977
dependencies = [
69786978
"bech32",
69796979
"bitflags 2.10.0",
@@ -7040,7 +7040,7 @@ dependencies = [
70407040

70417041
[[package]]
70427042
name = "zebra-consensus"
7043-
version = "3.1.1"
7043+
version = "3.1.2"
70447044
dependencies = [
70457045
"bellman",
70467046
"blake2b_simd",
@@ -7128,7 +7128,7 @@ dependencies = [
71287128

71297129
[[package]]
71307130
name = "zebra-node-services"
7131-
version = "2.1.1"
7131+
version = "2.1.2"
71327132
dependencies = [
71337133
"color-eyre",
71347134
"jsonrpsee-types",
@@ -7194,7 +7194,7 @@ dependencies = [
71947194

71957195
[[package]]
71967196
name = "zebra-script"
7197-
version = "3.0.1"
7197+
version = "3.0.2"
71987198
dependencies = [
71997199
"hex",
72007200
"lazy_static",
@@ -7208,7 +7208,7 @@ dependencies = [
72087208

72097209
[[package]]
72107210
name = "zebra-state"
7211-
version = "3.1.1"
7211+
version = "3.1.2"
72127212
dependencies = [
72137213
"bincode",
72147214
"chrono",

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 = "3.1.0"
3+
version = "4.0.0"
44
authors = ["Zcash Foundation <zebra@zfnd.org>"]
55
description = "Core Zcash data structures"
66
license = "MIT OR Apache-2.0"

zebra-consensus/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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+
## [3.1.2] - 2026-01-21
9+
10+
No API changes; internal dependencies updated.
11+
812
## [3.1.1] - 2025-11-28
913

1014
No API changes; internal dependencies updated.

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 = "3.1.1"
3+
version = "3.1.2"
44
authors = ["Zcash Foundation <zebra@zfnd.org>"]
55
description = "Implementation of Zcash consensus checks"
66
license = "MIT OR Apache-2.0"
@@ -61,10 +61,10 @@ zcash_proofs = { workspace = true, features = ["multicore", "bundled-prover"] }
6161
tower-fallback = { path = "../tower-fallback/", version = "0.2.41" }
6262
tower-batch-control = { path = "../tower-batch-control/", version = "1.0.1" }
6363

64-
zebra-script = { path = "../zebra-script", version = "3.0.1" }
65-
zebra-state = { path = "../zebra-state", version = "3.1.1" }
66-
zebra-node-services = { path = "../zebra-node-services", version = "2.1.1" }
67-
zebra-chain = { path = "../zebra-chain", version = "3.1.0" }
64+
zebra-script = { path = "../zebra-script", version = "3.0.2" }
65+
zebra-state = { path = "../zebra-state", version = "3.1.2" }
66+
zebra-node-services = { path = "../zebra-node-services", version = "2.1.2" }
67+
zebra-chain = { path = "../zebra-chain", version = "4.0.0" }
6868

6969
zcash_protocol.workspace = true
7070

@@ -88,8 +88,8 @@ tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
8888
tracing-error = { workspace = true }
8989
tracing-subscriber = { workspace = true }
9090

91-
zebra-state = { path = "../zebra-state", version = "3.1.1", features = ["proptest-impl"] }
92-
zebra-chain = { path = "../zebra-chain", version = "3.1.0", features = ["proptest-impl"] }
91+
zebra-state = { path = "../zebra-state", version = "3.1.2", features = ["proptest-impl"] }
92+
zebra-chain = { path = "../zebra-chain", version = "4.0.0", features = ["proptest-impl"] }
9393
zebra-test = { path = "../zebra-test/", version = "2.0.1" }
9494

9595
[lints]

zebra-network/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ howudoin = { workspace = true, optional = true }
8383
proptest = { workspace = true, optional = true }
8484
proptest-derive = { workspace = true, optional = true }
8585

86-
zebra-chain = { path = "../zebra-chain", version = "3.1.0", features = ["async-error"] }
86+
zebra-chain = { path = "../zebra-chain", version = "4.0.0", features = ["async-error"] }
8787

8888
[dev-dependencies]
8989
proptest = { workspace = true }

zebra-node-services/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ 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+
## [2.1.2] - 2026-01-21
9+
10+
No API changes; internal dependencies updated.
811

912
## [2.1.1] - 2025-11-28
1013

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 = "2.1.1"
3+
version = "2.1.2"
44
authors = ["Zcash Foundation <zebra@zfnd.org>"]
55
description = "The interfaces of some Zebra node services"
66
license = "MIT OR Apache-2.0"
@@ -30,7 +30,7 @@ rpc-client = [
3030
]
3131

3232
[dependencies]
33-
zebra-chain = { path = "../zebra-chain" , version = "3.1.0" }
33+
zebra-chain = { path = "../zebra-chain" , version = "4.0.0" }
3434
tower = { workspace = true }
3535

3636
# Optional dependencies

zebra-rpc/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,16 @@ sapling-crypto = { workspace = true }
9494
# Test-only feature proptest-impl
9595
proptest = { workspace = true, optional = true }
9696

97-
zebra-chain = { path = "../zebra-chain", version = "3.1.0", features = [
97+
zebra-chain = { path = "../zebra-chain", version = "4.0.0", features = [
9898
"json-conversion",
9999
] }
100-
zebra-consensus = { path = "../zebra-consensus", version = "3.1.1" }
100+
zebra-consensus = { path = "../zebra-consensus", version = "3.1.2" }
101101
zebra-network = { path = "../zebra-network", version = "3.0.0" }
102-
zebra-node-services = { path = "../zebra-node-services", version = "2.1.1", features = [
102+
zebra-node-services = { path = "../zebra-node-services", version = "2.1.2", features = [
103103
"rpc-client",
104104
] }
105-
zebra-script = { path = "../zebra-script", version = "3.0.1" }
106-
zebra-state = { path = "../zebra-state", version = "3.1.1" }
105+
zebra-script = { path = "../zebra-script", version = "3.0.2" }
106+
zebra-state = { path = "../zebra-state", version = "3.1.2" }
107107

108108
[build-dependencies]
109109
tonic-prost-build = { workspace = true }
@@ -117,16 +117,16 @@ proptest = { workspace = true }
117117
thiserror = { workspace = true }
118118
tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
119119

120-
zebra-chain = { path = "../zebra-chain", version = "3.1.0", features = [
120+
zebra-chain = { path = "../zebra-chain", version = "4.0.0", features = [
121121
"proptest-impl",
122122
] }
123-
zebra-consensus = { path = "../zebra-consensus", version = "3.1.1", features = [
123+
zebra-consensus = { path = "../zebra-consensus", version = "3.1.2", features = [
124124
"proptest-impl",
125125
] }
126126
zebra-network = { path = "../zebra-network", version = "3.0.0", features = [
127127
"proptest-impl",
128128
] }
129-
zebra-state = { path = "../zebra-state", version = "3.1.1", features = [
129+
zebra-state = { path = "../zebra-state", version = "3.1.2", features = [
130130
"proptest-impl",
131131
] }
132132

zebra-script/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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+
## [3.0.2] - 2026-01-21
9+
10+
No API changes; internal dependencies updated.
11+
812
## [3.0.1] - 2025-11-28
913

1014
No API changes; internal dependencies updated.

zebra-script/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-script"
3-
version = "3.0.1"
3+
version = "3.0.2"
44
authors = ["Zcash Foundation <zebra@zfnd.org>"]
55
description = "Zebra script verification wrapping zcashd's zcash_script library"
66
license = "MIT OR Apache-2.0"
@@ -25,7 +25,7 @@ comparison-interpreter = []
2525
libzcash_script = { workspace = true }
2626
zcash_script = { workspace = true }
2727
zcash_primitives = { workspace = true }
28-
zebra-chain = { path = "../zebra-chain", version = "3.1.0" }
28+
zebra-chain = { path = "../zebra-chain", version = "4.0.0" }
2929

3030
thiserror = { workspace = true }
3131

0 commit comments

Comments
 (0)