Skip to content

Commit 62a7255

Browse files
authored
chore: release (#587)
1 parent 230bf4e commit 62a7255

22 files changed

+481
-187
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ members = ["cli", "grpc", "node", "node-wasm", "node-uniffi", "proto", "rpc", "t
44

55
[workspace.dependencies]
66
blockstore = "0.7.1"
7-
lumina-node = { version = "0.9.1", path = "node" }
8-
lumina-node-wasm = { version = "0.8.1", path = "node-wasm" }
7+
lumina-node = { version = "0.10.0", path = "node" }
8+
lumina-node-wasm = { version = "0.8.2", path = "node-wasm" }
99
lumina-utils = { version = "0.1.0", path = "utils" }
1010
celestia-proto = { version = "0.7.0", path = "proto" }
11-
celestia-grpc = { version = "0.2.1", path = "grpc" }
12-
celestia-rpc = { version = "0.9.1", path = "rpc", default-features = false }
13-
celestia-types = { version = "0.10.1", path = "types", default-features = false }
11+
celestia-grpc = { version = "0.2.2", path = "grpc" }
12+
celestia-rpc = { version = "0.10.0", path = "rpc", default-features = false }
13+
celestia-types = { version = "0.11.0", path = "types", default-features = false }
1414
tendermint = { version = "0.40.0", default-features = false }
1515
tendermint-proto = "0.40.0"
1616

cli/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.6.2](https://github.com/eigerco/lumina/compare/lumina-cli-v0.6.1...lumina-cli-v0.6.2) - 2025-04-02
10+
11+
### Added
12+
13+
- *(node-wasm)* Multiplex message channel connection to worker ([#563](https://github.com/eigerco/lumina/pull/563))
14+
- *(ci)* allow other node types than bridge ([#562](https://github.com/eigerco/lumina/pull/562))
15+
916
## [0.6.1](https://github.com/eigerco/lumina/compare/lumina-cli-v0.6.0...lumina-cli-v0.6.1) - 2025-02-24
1017

1118
### Other

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lumina-cli"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Celestia data availability node implementation in Rust"

grpc/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.2](https://github.com/eigerco/lumina/compare/celestia-grpc-v0.2.1...celestia-grpc-v0.2.2) - 2025-04-02
11+
12+
### Added
13+
14+
- lumina-utils crate ([#564](https://github.com/eigerco/lumina/pull/564))
15+
- *(ci)* allow other node types than bridge ([#562](https://github.com/eigerco/lumina/pull/562))
16+
1017
## [0.2.1](https://github.com/eigerco/lumina/compare/celestia-grpc-v0.2.0...celestia-grpc-v0.2.1) - 2025-02-24
1118

1219
### Other

grpc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "celestia-grpc"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "A client for interacting with Celestia validator nodes gRPC"
@@ -22,7 +22,7 @@ categories = [
2222
crate-type = ["cdylib", "lib"]
2323

2424
[dependencies]
25-
celestia-grpc-macros = { version = "0.2.0", path = "grpc-macros" }
25+
celestia-grpc-macros = { version = "0.2.1", path = "grpc-macros" }
2626
celestia-proto = { workspace = true, features = ["tonic"] }
2727
celestia-types.workspace = true
2828
prost.workspace = true

grpc/grpc-macros/CHANGELOG.md

+6
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+
## [0.2.1](https://github.com/eigerco/lumina/compare/celestia-grpc-macros-v0.2.0...celestia-grpc-macros-v0.2.1) - 2025-04-02
11+
12+
### Added
13+
14+
- *(grpc)* increase max message size to handle big celestia blocks ([#559](https://github.com/eigerco/lumina/pull/559))
15+
1016
## [0.2.0](https://github.com/eigerco/lumina/compare/celestia-grpc-macros-v0.1.0...celestia-grpc-macros-v0.2.0) - 2025-01-28
1117

1218
### Added

grpc/grpc-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "celestia-grpc-macros"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Helper crate for grpc_method macro for creating gRPC client, used by celestia-grpc"

node-uniffi/CHANGELOG.md

+6
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+
## [0.1.1](https://github.com/eigerco/lumina/compare/lumina-node-uniffi-v0.1.0...lumina-node-uniffi-v0.1.1) - 2025-04-02
11+
12+
### Other
13+
14+
- *(node-uniffi)* Add minimal test case in Kotlin and Swift ([#535](https://github.com/eigerco/lumina/pull/535))
15+
1016
## [0.1.0](https://github.com/eigerco/lumina/releases/tag/lumina-node-uniffi-v0.1.0) - 2025-02-24
1117

1218
### Added

node-uniffi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lumina-node-uniffi"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Mobile bindings for Lumina node"

node-wasm/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.8.2](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.8.1...lumina-node-wasm-v0.8.2) - 2025-04-02
10+
11+
### Added
12+
13+
- *(node-wasm)* Multiplex message channel connection to worker ([#563](https://github.com/eigerco/lumina/pull/563))
14+
- *(node)* Resolve dnsaddr in lumina-node ([#577](https://github.com/eigerco/lumina/pull/577))
15+
- lumina-utils crate ([#564](https://github.com/eigerco/lumina/pull/564))
16+
- *(ci)* allow other node types than bridge ([#562](https://github.com/eigerco/lumina/pull/562))
17+
918
## [0.8.1](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.8.0...lumina-node-wasm-v0.8.1) - 2025-02-24
1019

1120
### Other

node-wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lumina-node-wasm"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Browser compatibility layer for the Lumina node"

0 commit comments

Comments
 (0)