Skip to content

Commit 44b1c8e

Browse files
chore: release v6.3.1
1 parent e26a357 commit 44b1c8e

13 files changed

Lines changed: 54 additions & 54 deletions

File tree

Cargo.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5954,7 +5954,7 @@ dependencies = [
59545954

59555955
[[package]]
59565956
name = "tower-batch-control"
5957-
version = "1.1.1"
5957+
version = "1.1.2"
59585958
dependencies = [
59595959
"color-eyre",
59605960
"ed25519-zebra",
@@ -5977,7 +5977,7 @@ dependencies = [
59775977

59785978
[[package]]
59795979
name = "tower-fallback"
5980-
version = "0.2.43"
5980+
version = "0.2.44"
59815981
dependencies = [
59825982
"futures-core",
59835983
"pin-project",
@@ -7344,7 +7344,7 @@ dependencies = [
73447344

73457345
[[package]]
73467346
name = "zebra-chain"
7347-
version = "12.0.0"
7347+
version = "12.0.1"
73487348
dependencies = [
73497349
"bech32",
73507350
"bitflags",
@@ -7414,7 +7414,7 @@ dependencies = [
74147414

74157415
[[package]]
74167416
name = "zebra-consensus"
7417-
version = "15.0.0"
7417+
version = "15.0.1"
74187418
dependencies = [
74197419
"bellman",
74207420
"blake2b_simd",
@@ -7466,7 +7466,7 @@ dependencies = [
74667466

74677467
[[package]]
74687468
name = "zebra-network"
7469-
version = "12.0.0"
7469+
version = "12.0.1"
74707470
dependencies = [
74717471
"bitflags",
74727472
"byteorder",
@@ -7508,7 +7508,7 @@ dependencies = [
75087508

75097509
[[package]]
75107510
name = "zebra-node-services"
7511-
version = "10.0.0"
7511+
version = "10.0.1"
75127512
dependencies = [
75137513
"color-eyre",
75147514
"jsonrpsee-types",
@@ -7522,7 +7522,7 @@ dependencies = [
75227522

75237523
[[package]]
75247524
name = "zebra-rpc"
7525-
version = "16.0.0"
7525+
version = "16.0.1"
75267526
dependencies = [
75277527
"anyhow",
75287528
"base64 0.22.1",
@@ -7588,7 +7588,7 @@ dependencies = [
75887588

75897589
[[package]]
75907590
name = "zebra-script"
7591-
version = "11.0.0"
7591+
version = "11.0.1"
75927592
dependencies = [
75937593
"hex",
75947594
"lazy_static",
@@ -7606,7 +7606,7 @@ dependencies = [
76067606

76077607
[[package]]
76087608
name = "zebra-state"
7609-
version = "13.0.0"
7609+
version = "13.0.1"
76107610
dependencies = [
76117611
"bincode",
76127612
"chrono",
@@ -7656,7 +7656,7 @@ dependencies = [
76567656

76577657
[[package]]
76587658
name = "zebra-test"
7659-
version = "4.0.0"
7659+
version = "5.0.0"
76607660
dependencies = [
76617661
"color-eyre",
76627662
"futures",
@@ -7683,7 +7683,7 @@ dependencies = [
76837683

76847684
[[package]]
76857685
name = "zebra-utils"
7686-
version = "10.0.1"
7686+
version = "10.0.2"
76877687
dependencies = [
76887688
"clap",
76897689
"color-eyre",
@@ -7705,7 +7705,7 @@ dependencies = [
77057705

77067706
[[package]]
77077707
name = "zebrad"
7708-
version = "6.3.0"
7708+
version = "6.3.1"
77097709
dependencies = [
77107710
"abscissa_core",
77117711
"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.1"
3+
version = "1.1.2"
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.43"
3+
version = "0.2.44"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-chain"
3-
version = "12.0.0"
3+
version = "12.0.1"
44
authors.workspace = true
55
description = "Core Zcash data structures"
66
license.workspace = true
@@ -133,7 +133,7 @@ proptest-derive = { workspace = true, optional = true }
133133
rand = { workspace = true, optional = true }
134134
rand_chacha = { workspace = true, optional = true }
135135

136-
zebra-test = { path = "../zebra-test/", version = "4.0.0", optional = true }
136+
zebra-test = { path = "../zebra-test/", version = "5.0.0", optional = true }
137137
bounded-vec = { workspace = true, features = ["serde"] }
138138

139139
[dev-dependencies]

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 = "15.0.0"
3+
version = "15.0.1"
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.43" }
69-
tower-batch-control = { path = "../tower-batch-control/", version = "1.1.1" }
68+
tower-fallback = { path = "../tower-fallback/", version = "0.2.44" }
69+
tower-batch-control = { path = "../tower-batch-control/", version = "1.1.2" }
7070

71-
zebra-script = { path = "../zebra-script", version = "11.0.0" }
72-
zebra-state = { path = "../zebra-state", version = "13.0.0" }
73-
zebra-node-services = { path = "../zebra-node-services", version = "10.0.0" }
74-
zebra-chain = { path = "../zebra-chain", version = "12.0.0" }
71+
zebra-script = { path = "../zebra-script", version = "11.0.1" }
72+
zebra-state = { path = "../zebra-state", version = "13.0.1" }
73+
zebra-node-services = { path = "../zebra-node-services", version = "10.0.1" }
74+
zebra-chain = { path = "../zebra-chain", version = "12.0.1" }
7575

7676
zcash_protocol.workspace = true
7777

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 = "12.0.0"
3+
version = "12.0.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 = "12.0.0", features = ["async-error"] }
88+
zebra-chain = { path = "../zebra-chain", version = "12.0.1", features = ["async-error"] }
8989

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

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 = "10.0.0"
3+
version = "10.0.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 = "12.0.0" }
34+
zebra-chain = { path = "../zebra-chain" , version = "12.0.1" }
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 = "16.0.0"
3+
version = "16.0.1"
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 = "12.0.0", features = [
112+
zebra-chain = { path = "../zebra-chain", version = "12.0.1", features = [
113113
"json-conversion",
114114
] }
115-
zebra-consensus = { path = "../zebra-consensus", version = "15.0.0" }
116-
zebra-network = { path = "../zebra-network", version = "12.0.0" }
117-
zebra-node-services = { path = "../zebra-node-services", version = "10.0.0", features = [
115+
zebra-consensus = { path = "../zebra-consensus", version = "15.0.1" }
116+
zebra-network = { path = "../zebra-network", version = "12.0.1" }
117+
zebra-node-services = { path = "../zebra-node-services", version = "10.0.1", features = [
118118
"rpc-client",
119119
] }
120-
zebra-script = { path = "../zebra-script", version = "11.0.0" }
121-
zebra-state = { path = "../zebra-state", version = "13.0.0" }
120+
zebra-script = { path = "../zebra-script", version = "11.0.1" }
121+
zebra-state = { path = "../zebra-state", version = "13.0.1" }
122122

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

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 = "11.0.0"
3+
version = "11.0.1"
44
authors.workspace = true
55
description = "Zebra script verification wrapping zcashd's zcash_script library"
66
license.workspace = true
@@ -26,7 +26,7 @@ comparison-interpreter = []
2626
libzcash_script = { workspace = true }
2727
zcash_script = { workspace = true }
2828
zcash_primitives = { workspace = true }
29-
zebra-chain = { path = "../zebra-chain", version = "12.0.0" }
29+
zebra-chain = { path = "../zebra-chain", version = "12.0.1" }
3030

3131
rand = { workspace = true }
3232
thiserror = { workspace = true }

zebra-state/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-state"
3-
version = "13.0.0"
3+
version = "13.0.1"
44
authors.workspace = true
55
description = "State contextual verification and storage code for Zebra"
66
license.workspace = true
@@ -77,14 +77,14 @@ sapling-crypto = { workspace = true }
7777
elasticsearch = { workspace = true, features = ["rustls-tls"], optional = true }
7878
serde_json = { workspace = true, optional = true }
7979

80-
zebra-node-services = { path = "../zebra-node-services", version = "10.0.0" }
81-
zebra-chain = { path = "../zebra-chain", version = "12.0.0", features = ["async-error"] }
80+
zebra-node-services = { path = "../zebra-node-services", version = "10.0.1" }
81+
zebra-chain = { path = "../zebra-chain", version = "12.0.1", features = ["async-error"] }
8282

8383
# prod feature progress-bar
8484
howudoin = { workspace = true, optional = true }
8585

8686
# test feature proptest-impl
87-
zebra-test = { path = "../zebra-test/", version = "4.0.0", optional = true }
87+
zebra-test = { path = "../zebra-test/", version = "5.0.0", optional = true }
8888
proptest = { workspace = true, optional = true }
8989
proptest-derive = { workspace = true, optional = true }
9090
derive-getters.workspace = true

0 commit comments

Comments
 (0)