Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@ members = [
]

[workspace.package]
version = "1.0.0-rc.4"
version = "1.0.0"
edition = "2024"

[workspace.dependencies]
beetswap = "0.5"
blockstore = "0.8"
leopard-codec = "0.2"
lumina-node = { version = "=1.0.0-rc.4", path = "node" }
lumina-node-wasm = { version = "=1.0.0-rc.4", path = "node-wasm" }
lumina-utils = { version = "=1.0.0-rc.4", path = "utils" }
celestia-client = { version = "=1.0.0-rc.4", path = "client" }
celestia-proto = { version = "=1.0.0-rc.4", path = "proto" }
celestia-grpc = { version = "=1.0.0-rc.4", path = "grpc", default-features = false }
celestia-grpc-macros = { version = "=1.0.0-rc.4", path = "grpc/grpc-macros" }
celestia-rpc = { version = "=1.0.0-rc.4", path = "rpc", default-features = false }
celestia-types = { version = "=1.0.0-rc.4", path = "types", default-features = false }
lumina-node = { version = "=1.0.0", path = "node" }
lumina-node-wasm = { version = "=1.0.0", path = "node-wasm" }
lumina-utils = { version = "=1.0.0", path = "utils" }
celestia-client = { version = "=1.0.0", path = "client" }
celestia-proto = { version = "=1.0.0", path = "proto" }
celestia-grpc = { version = "=1.0.0", path = "grpc", default-features = false }
celestia-grpc-macros = { version = "=1.0.0", path = "grpc/grpc-macros" }
celestia-rpc = { version = "=1.0.0", path = "rpc", default-features = false }
celestia-types = { version = "=1.0.0", path = "types", default-features = false }

anyhow = "1.0.40"
async-stream = "0.3.5"
Expand Down
6 changes: 6 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0](https://github.com/celestiaorg/lumina/compare/lumina-cli-v1.0.0-rc.4...lumina-cli-v1.0.0) - 2026-04-03

### Other

- update Cargo.lock dependencies

## [1.0.0-rc.3](https://github.com/celestiaorg/lumina/compare/lumina-cli-v1.0.0-rc.2...lumina-cli-v1.0.0-rc.3) - 2026-03-19

### Added
Expand Down
6 changes: 6 additions & 0 deletions node-uniffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0](https://github.com/celestiaorg/lumina/compare/lumina-node-uniffi-v1.0.0-rc.4...lumina-node-uniffi-v1.0.0) - 2026-04-03

### Other

- update Cargo.lock dependencies

## [1.0.0-rc.2](https://github.com/celestiaorg/lumina/compare/lumina-node-uniffi-v0.5.3...lumina-node-uniffi-v1.0.0-rc.2) - 2026-02-25

### Added
Expand Down
6 changes: 6 additions & 0 deletions node-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0](https://github.com/celestiaorg/lumina/compare/lumina-node-wasm-v1.0.0-rc.3...lumina-node-wasm-v1.0.0) - 2026-04-03

### Other

- release v1.0.0-rc.4 ([#950](https://github.com/celestiaorg/lumina/pull/950))

## [1.0.0-rc.3](https://github.com/celestiaorg/lumina/compare/lumina-node-wasm-v1.0.0-rc.2...lumina-node-wasm-v1.0.0-rc.3) - 2026-03-19

### Added
Expand Down
6 changes: 3 additions & 3 deletions node-wasm/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node-wasm/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Celestia <contact@celestia.org>"
],
"description": "Lumina node for Celestia, running in browser",
"version": "1.0.0-rc.4",
"version": "1.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
10 changes: 10 additions & 0 deletions node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0](https://github.com/celestiaorg/lumina/compare/lumina-node-v1.0.0-rc.3...lumina-node-v1.0.0) - 2026-04-03

### Added

- prepare for v8 release ([#949](https://github.com/celestiaorg/lumina/pull/949))

### Other

- release v1.0.0-rc.4 ([#950](https://github.com/celestiaorg/lumina/pull/950))

## [1.0.0-rc.4](https://github.com/celestiaorg/lumina/compare/lumina-node-v1.0.0-rc.3...lumina-node-v1.0.0-rc.4) - 2026-04-03

### Added
Expand Down
Loading