Skip to content

Commit ad18420

Browse files
chore: release
1 parent 8d00077 commit ad18420

9 files changed

Lines changed: 33 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org).
77

88
## [Unreleased]
99

10+
## [Zebra 6.3.1](https://github.com/ZcashFoundation/zebra/releases/tag/v6.3.1) - 2026-08-12
11+
12+
### Changed
13+
14+
- Updated the following local packages: zebra-consensus, zebra-rpc, zebra-utils
15+
1016
## [Zebra 6.3.0](https://github.com/ZcashFoundation/zebra/releases/tag/v6.3.0) - 2026-08-10
1117

1218
### Added

Cargo.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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",
@@ -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",
@@ -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",

zebra-consensus/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [15.0.1] - 2026-08-12
11+
1012
### Changed
1113

1214
- Consensus rules that apply to a transaction in both block and mempool context

zebra-consensus/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-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

zebra-rpc/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [16.0.1] - 2026-08-12
11+
12+
### Changed
13+
14+
- Updated the following local packages: zebra-consensus
15+
1016
## [16.0.0] - 2026-08-10
1117

1218
### Breaking Changes

zebra-rpc/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-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
@@ -112,7 +112,7 @@ proptest = { workspace = true, optional = true }
112112
zebra-chain = { path = "../zebra-chain", version = "12.0.0", features = [
113113
"json-conversion",
114114
] }
115-
zebra-consensus = { path = "../zebra-consensus", version = "15.0.0" }
115+
zebra-consensus = { path = "../zebra-consensus", version = "15.0.1" }
116116
zebra-network = { path = "../zebra-network", version = "12.0.0" }
117117
zebra-node-services = { path = "../zebra-node-services", version = "10.0.0", features = [
118118
"rpc-client",

zebra-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [10.0.2] - 2026-08-12
11+
12+
### Changed
13+
14+
- Updated the following local packages: zebra-rpc
15+
1016
## [10.0.1] - 2026-08-10
1117

1218
### Changed

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 = "10.0.1"
3+
version = "10.0.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 = "10.0.0" }
6464
zebra-chain = { path = "../zebra-chain", version = "12.0.0" }
6565

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

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

zebrad/Cargo.toml

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

159159
[dependencies]
160160
zebra-chain = { path = "../zebra-chain", version = "12.0.0" }
161-
zebra-consensus = { path = "../zebra-consensus", version = "15.0.0" }
161+
zebra-consensus = { path = "../zebra-consensus", version = "15.0.1" }
162162
zebra-network = { path = "../zebra-network", version = "12.0.0" }
163163
zebra-node-services = { path = "../zebra-node-services", version = "10.0.0", features = ["rpc-client"] }
164-
zebra-rpc = { path = "../zebra-rpc", version = "16.0.0" }
164+
zebra-rpc = { path = "../zebra-rpc", version = "16.0.1" }
165165
zebra-state = { path = "../zebra-state", version = "13.0.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
@@ -170,7 +170,7 @@ zebra-script = { path = "../zebra-script", version = "11.0.0" }
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 = "10.0.1", optional = true }
173+
zebra-utils = { path = "../zebra-utils", version = "10.0.2", optional = true }
174174

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

0 commit comments

Comments
 (0)