Skip to content

Commit 038e76c

Browse files
authored
chore: release (#537)
1 parent 1167154 commit 038e76c

18 files changed

+117
-50
lines changed

Cargo.lock

+6-6
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,12 +4,12 @@ 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.0", path = "node" }
8-
lumina-node-wasm = { version = "0.8.0", path = "node-wasm" }
7+
lumina-node = { version = "0.9.1", path = "node" }
8+
lumina-node-wasm = { version = "0.8.1", path = "node-wasm" }
99
celestia-proto = { version = "0.7.0", path = "proto" }
10-
celestia-grpc = { version = "0.2.0", path = "grpc" }
11-
celestia-rpc = { version = "0.9.0", path = "rpc", default-features = false }
12-
celestia-types = { version = "0.10.0", path = "types", default-features = false }
10+
celestia-grpc = { version = "0.2.1", path = "grpc" }
11+
celestia-rpc = { version = "0.9.1", path = "rpc", default-features = false }
12+
celestia-types = { version = "0.10.1", path = "types", default-features = false }
1313
tendermint = { version = "0.40.0", default-features = false }
1414
tendermint-proto = "0.40.0"
1515

cli/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.6.1](https://github.com/eigerco/lumina/compare/lumina-cli-v0.6.0...lumina-cli-v0.6.1) - 2025-02-24
10+
11+
### Other
12+
13+
- updated the following local packages: celestia-types
14+
915
## [0.6.0](https://github.com/eigerco/lumina/compare/lumina-cli-v0.5.2...lumina-cli-v0.6.0) - 2025-01-28
1016

1117
### Added

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.0"
3+
version = "0.6.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Celestia data availability node implementation in Rust"

grpc/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-v0.2.0...celestia-grpc-v0.2.1) - 2025-02-24
11+
12+
### Other
13+
14+
- updated the following local packages: celestia-types
15+
1016
## [0.2.0](https://github.com/eigerco/lumina/compare/celestia-grpc-v0.1.0...celestia-grpc-v0.2.0) - 2025-01-28
1117

1218
### Added

grpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "celestia-grpc"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "A client for interacting with Celestia validator nodes gRPC"

node-uniffi/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.0](https://github.com/eigerco/lumina/releases/tag/lumina-node-uniffi-v0.1.0) - 2025-02-24
11+
12+
### Added
13+
14+
- *(node-uniffi)* [**breaking**] Use in-memory stores if base path is not set (#530)
15+
- adding uniffi bindings to support android and ios (#473)
16+
17+
### Fixed
18+
19+
- *(node-uniffi)* [**breaking**] Serialize correctly ExtendedHeader to json (#531)
20+
21+
### Other
22+
23+
- *(ci)* add releasing for node-uniffi (#545)

node-wasm/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.8.1](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.8.0...lumina-node-wasm-v0.8.1) - 2025-02-24
10+
11+
### Other
12+
13+
- *(ci)* fix outdated lockfiles when releasing to npm (#544)
14+
- remove outdated shwap note and link to changelog for js (#536)
15+
916
## [0.8.0](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.7.0...lumina-node-wasm-v0.8.0) - 2025-01-28
1017

1118
Summary:

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.0"
3+
version = "0.8.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Browser compatibility layer for the Lumina node"

0 commit comments

Comments
 (0)