Skip to content

Commit 135c136

Browse files
chore: release v6.2.0 (#11007)
Co-authored-by: zebra-release[bot] <296864682+zebra-release[bot]@users.noreply.github.com>
1 parent 1c9414e commit 135c136

7 files changed

Lines changed: 22 additions & 22 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7366,7 +7366,7 @@ dependencies = [
73667366

73677367
[[package]]
73687368
name = "zebra-consensus"
7369-
version = "12.0.0"
7369+
version = "12.0.1"
73707370
dependencies = [
73717371
"bellman",
73727372
"blake2b_simd",
@@ -7418,7 +7418,7 @@ dependencies = [
74187418

74197419
[[package]]
74207420
name = "zebra-network"
7421-
version = "10.1.1"
7421+
version = "10.2.0"
74227422
dependencies = [
74237423
"bitflags",
74247424
"byteorder",
@@ -7474,7 +7474,7 @@ dependencies = [
74747474

74757475
[[package]]
74767476
name = "zebra-rpc"
7477-
version = "12.0.0"
7477+
version = "12.1.0"
74787478
dependencies = [
74797479
"anyhow",
74807480
"base64 0.22.1",
@@ -7558,7 +7558,7 @@ dependencies = [
75587558

75597559
[[package]]
75607560
name = "zebra-state"
7561-
version = "11.0.0"
7561+
version = "11.1.0"
75627562
dependencies = [
75637563
"bincode",
75647564
"chrono",
@@ -7635,7 +7635,7 @@ dependencies = [
76357635

76367636
[[package]]
76377637
name = "zebra-utils"
7638-
version = "9.1.1"
7638+
version = "9.1.2"
76397639
dependencies = [
76407640
"clap",
76417641
"color-eyre",
@@ -7657,7 +7657,7 @@ dependencies = [
76577657

76587658
[[package]]
76597659
name = "zebrad"
7660-
version = "6.1.0"
7660+
version = "6.2.0"
76617661
dependencies = [
76627662
"abscissa_core",
76637663
"anyhow",

zebra-consensus/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-consensus"
3-
version = "12.0.0"
3+
version = "12.0.1"
44
authors.workspace = true
55
description = "Implementation of Zcash consensus checks"
66
license.workspace = true
@@ -69,7 +69,7 @@ tower-fallback = { path = "../tower-fallback/", version = "0.2.43" }
6969
tower-batch-control = { path = "../tower-batch-control/", version = "1.1.1" }
7070

7171
zebra-script = { path = "../zebra-script", version = "10.1.1" }
72-
zebra-state = { path = "../zebra-state", version = "11.0.0" }
72+
zebra-state = { path = "../zebra-state", version = "11.1.0" }
7373
zebra-node-services = { path = "../zebra-node-services", version = "9.1.1" }
7474
zebra-chain = { path = "../zebra-chain", version = "11.2.0" }
7575

zebra-network/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-network"
3-
version = "10.1.1"
3+
version = "10.2.0"
44
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
55
description = "Networking code for Zebra"
66
# # Legal

zebra-rpc/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-rpc"
3-
version = "12.0.0"
3+
version = "12.1.0"
44
authors.workspace = true
55
description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface"
66
license.workspace = true
@@ -112,13 +112,13 @@ proptest = { workspace = true, optional = true }
112112
zebra-chain = { path = "../zebra-chain", version = "11.2.0", features = [
113113
"json-conversion",
114114
] }
115-
zebra-consensus = { path = "../zebra-consensus", version = "12.0.0" }
116-
zebra-network = { path = "../zebra-network", version = "10.1.1" }
115+
zebra-consensus = { path = "../zebra-consensus", version = "12.0.1" }
116+
zebra-network = { path = "../zebra-network", version = "10.2.0" }
117117
zebra-node-services = { path = "../zebra-node-services", version = "9.1.1", features = [
118118
"rpc-client",
119119
] }
120120
zebra-script = { path = "../zebra-script", version = "10.1.1" }
121-
zebra-state = { path = "../zebra-state", version = "11.0.0" }
121+
zebra-state = { path = "../zebra-state", version = "11.1.0" }
122122

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

zebra-state/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-state"
3-
version = "11.0.0"
3+
version = "11.1.0"
44
authors.workspace = true
55
description = "State contextual verification and storage code for Zebra"
66
license.workspace = true

zebra-utils/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-utils"
3-
version = "9.1.1"
3+
version = "9.1.2"
44
authors.workspace = true
55
description = "Developer tools for Zebra maintenance and testing"
66
license.workspace = true
@@ -64,7 +64,7 @@ zebra-node-services = { path = "../zebra-node-services", version = "9.1.1" }
6464
zebra-chain = { path = "../zebra-chain", version = "11.2.0" }
6565

6666
# These crates are needed for the block-template-to-proposal binary
67-
zebra-rpc = { path = "../zebra-rpc", version = "12.0.0" }
67+
zebra-rpc = { path = "../zebra-rpc", version = "12.1.0" }
6868

6969
# These crates are needed for the zebra-checkpoints binary
7070
itertools = { workspace = true, optional = true }

zebrad/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
# Crate metadata
33
name = "zebrad"
4-
version = "6.1.0"
4+
version = "6.2.0"
55
authors.workspace = true
66
description = "The Zcash Foundation's independent, consensus-compatible implementation of a Zcash node"
77
license.workspace = true
@@ -158,19 +158,19 @@ comparison-interpreter = ["zebra-script/comparison-interpreter"]
158158

159159
[dependencies]
160160
zebra-chain = { path = "../zebra-chain", version = "11.2.0" }
161-
zebra-consensus = { path = "../zebra-consensus", version = "12.0.0" }
162-
zebra-network = { path = "../zebra-network", version = "10.1.1" }
161+
zebra-consensus = { path = "../zebra-consensus", version = "12.0.1" }
162+
zebra-network = { path = "../zebra-network", version = "10.2.0" }
163163
zebra-node-services = { path = "../zebra-node-services", version = "9.1.1", features = ["rpc-client"] }
164-
zebra-rpc = { path = "../zebra-rpc", version = "12.0.0" }
165-
zebra-state = { path = "../zebra-state", version = "11.0.0" }
164+
zebra-rpc = { path = "../zebra-rpc", version = "12.1.0" }
165+
zebra-state = { path = "../zebra-state", version = "11.1.0" }
166166
# zebra-script is not used directly, but we list it here to enable the
167167
# "comparison-interpreter" feature. (Feature unification will take care of
168168
# enabling it in the other imports of zcash-script.)
169169
zebra-script = { path = "../zebra-script", version = "10.1.1" }
170170
zcash_script = { workspace = true }
171171

172172
# Required for crates.io publishing, but it's only used in tests
173-
zebra-utils = { path = "../zebra-utils", version = "9.1.1", optional = true }
173+
zebra-utils = { path = "../zebra-utils", version = "9.1.2", optional = true }
174174

175175
abscissa_core = { workspace = true }
176176
clap = { workspace = true, features = ["cargo"] }

0 commit comments

Comments
 (0)