Skip to content

Commit bb41d69

Browse files
chore: release v6.0.0 (#10811)
* chore: release * chore: correct release versions (zebrad 6.0.0, zebra-script 10.1.0) release-plz over-bumped zebra-script to 11.0.0 (a cross-crate fix(consensus)! squash; its own change is additive) and could not promote zebrad rc.0 -> final. * docs(readme): bump git-install --tag to v6.0.0 --------- Co-authored-by: Marek <m@rek.onl>
1 parent 5243e9f commit bb41d69

13 files changed

Lines changed: 64 additions & 64 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.0.1"
5888+
version = "1.1.0"
58895889
dependencies = [
58905890
"color-eyre",
58915891
"ed25519-zebra",
@@ -5908,7 +5908,7 @@ dependencies = [
59085908

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

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

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

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

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

74447444
[[package]]
74457445
name = "zebra-rpc"
7446-
version = "11.0.0"
7446+
version = "11.1.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.0.0"
7512+
version = "10.1.0"
75137513
dependencies = [
75147514
"hex",
75157515
"lazy_static",
@@ -7527,7 +7527,7 @@ dependencies = [
75277527

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

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

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ cargo install --locked zebrad
124124
Alternatively, you can install it from GitHub:
125125

126126
```sh
127-
cargo install --git https://github.com/ZcashFoundation/zebra --tag v6.0.0-rc.0 zebrad
127+
cargo install --git https://github.com/ZcashFoundation/zebra --tag v6.0.0 zebrad
128128
```
129129

130130
You can start Zebra by running

tower-batch-control/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tower-batch-control"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
55
description = "Tower middleware for batch request processing"
66
# # Legal
@@ -46,7 +46,7 @@ rand = { workspace = true }
4646

4747
tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
4848
tokio-test = { workspace = true }
49-
tower-fallback = { path = "../tower-fallback/", version = "0.2.41" }
49+
tower-fallback = { path = "../tower-fallback/", version = "0.2.42" }
5050
tower-test = { workspace = true }
5151

5252
zebra-test = { path = "../zebra-test/", version = "4.0.0" }

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.41"
3+
version = "0.2.42"
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.0.0"
3+
version = "11.1.0"
44
authors.workspace = true
55
description = "Core Zcash data structures"
66
license.workspace = true

zebra-consensus/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-consensus"
3-
version = "10.0.0"
3+
version = "11.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.41" }
69-
tower-batch-control = { path = "../tower-batch-control/", version = "1.0.1" }
68+
tower-fallback = { path = "../tower-fallback/", version = "0.2.42" }
69+
tower-batch-control = { path = "../tower-batch-control/", version = "1.1.0" }
7070

71-
zebra-script = { path = "../zebra-script", version = "10.0.0" }
72-
zebra-state = { path = "../zebra-state", version = "10.0.0" }
73-
zebra-node-services = { path = "../zebra-node-services", version = "9.0.0" }
74-
zebra-chain = { path = "../zebra-chain", version = "11.0.0" }
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" }
7575

7676
zcash_protocol.workspace = true
7777

@@ -95,8 +95,8 @@ tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
9595
tracing-error = { workspace = true }
9696
tracing-subscriber = { workspace = true }
9797

98-
zebra-state = { path = "../zebra-state", version = "10.0.0", features = ["proptest-impl"] }
99-
zebra-chain = { path = "../zebra-chain", version = "11.0.0", features = ["proptest-impl"] }
98+
zebra-state = { path = "../zebra-state", version = "10.1.0", features = ["proptest-impl"] }
99+
zebra-chain = { path = "../zebra-chain", version = "11.1.0", features = ["proptest-impl"] }
100100
zebra-test = { path = "../zebra-test/", version = "4.0.0" }
101101

102102
criterion = { workspace = true, features = ["html_reports"] }

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.0.0"
3+
version = "10.1.0"
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.0.0", features = ["async-error"] }
88+
zebra-chain = { path = "../zebra-chain", version = "11.1.0", 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 = "9.0.0"
3+
version = "9.1.0"
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.0.0" }
34+
zebra-chain = { path = "../zebra-chain" , version = "11.1.0" }
3535
tower = { workspace = true }
3636

3737
# Optional dependencies

zebra-rpc/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-rpc"
3-
version = "11.0.0"
3+
version = "11.1.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.0.0", features = [
112+
zebra-chain = { path = "../zebra-chain", version = "11.1.0", features = [
113113
"json-conversion",
114114
] }
115-
zebra-consensus = { path = "../zebra-consensus", version = "10.0.0" }
116-
zebra-network = { path = "../zebra-network", version = "10.0.0" }
117-
zebra-node-services = { path = "../zebra-node-services", version = "9.0.0", features = [
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 = [
118118
"rpc-client",
119119
] }
120-
zebra-script = { path = "../zebra-script", version = "10.0.0" }
121-
zebra-state = { path = "../zebra-state", version = "10.0.0" }
120+
zebra-script = { path = "../zebra-script", version = "10.1.0" }
121+
zebra-state = { path = "../zebra-state", version = "10.1.0" }
122122

123123
[build-dependencies]
124124
openrpsee = { workspace = true }
@@ -136,16 +136,16 @@ proptest = { workspace = true }
136136

137137
tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
138138

139-
zebra-chain = { path = "../zebra-chain", version = "11.0.0", features = [
139+
zebra-chain = { path = "../zebra-chain", version = "11.1.0", features = [
140140
"proptest-impl",
141141
] }
142-
zebra-consensus = { path = "../zebra-consensus", version = "10.0.0", features = [
142+
zebra-consensus = { path = "../zebra-consensus", version = "11.0.0", features = [
143143
"proptest-impl",
144144
] }
145-
zebra-network = { path = "../zebra-network", version = "10.0.0", features = [
145+
zebra-network = { path = "../zebra-network", version = "10.1.0", features = [
146146
"proptest-impl",
147147
] }
148-
zebra-state = { path = "../zebra-state", version = "10.0.0", features = [
148+
zebra-state = { path = "../zebra-state", version = "10.1.0", features = [
149149
"proptest-impl",
150150
] }
151151

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 = "10.0.0"
3+
version = "10.1.0"
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 = "11.0.0" }
29+
zebra-chain = { path = "../zebra-chain", version = "11.1.0" }
3030

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

0 commit comments

Comments
 (0)