diff --git a/Cargo.lock b/Cargo.lock index 7d42555e..137509dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3350,7 +3350,7 @@ dependencies = [ [[package]] name = "lumina-cli" -version = "0.5.2" +version = "0.6.0" dependencies = [ "anyhow", "axum", @@ -3374,7 +3374,7 @@ dependencies = [ [[package]] name = "lumina-node" -version = "0.8.0" +version = "0.9.0" dependencies = [ "async-trait", "backoff", @@ -3424,7 +3424,7 @@ dependencies = [ [[package]] name = "lumina-node-wasm" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "blockstore", diff --git a/Cargo.toml b/Cargo.toml index 0dbc0957..6149355e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,8 @@ members = ["cli", "grpc", "node", "node-wasm", "proto", "rpc", "types"] [workspace.dependencies] blockstore = "0.7.0" -lumina-node = { version = "0.8.0", path = "node" } -lumina-node-wasm = { version = "0.7.0", path = "node-wasm" } +lumina-node = { version = "0.9.0", path = "node" } +lumina-node-wasm = { version = "0.8.0", path = "node-wasm" } celestia-proto = { version = "0.6.0", path = "proto" } celestia-grpc = { version = "0.1.0", path = "grpc" } celestia-rpc = { version = "0.8.0", path = "rpc", default-features = false } diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 4ae456ec..cf9153a5 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/eigerco/lumina/compare/lumina-cli-v0.5.2...lumina-cli-v0.6.0) - 2024-12-11 + +### Added + +- *(node)* [**breaking**] Implement `NodeBuilder` and remove `NodeConfig` (#472) + ## [0.5.2](https://github.com/eigerco/lumina/compare/lumina-cli-v0.5.1...lumina-cli-v0.5.2) - 2024-12-02 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ca20db78..d8e662bf 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-cli" -version = "0.5.2" +version = "0.6.0" edition = "2021" license = "Apache-2.0" description = "Celestia data availability node implementation in Rust" diff --git a/node-wasm/CHANGELOG.md b/node-wasm/CHANGELOG.md index 9795d898..16ff1ad3 100644 --- a/node-wasm/CHANGELOG.md +++ b/node-wasm/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.7.0...lumina-node-wasm-v0.8.0) - 2024-12-11 + +### Added + +- *(node)* [**breaking**] Implement `NodeBuilder` and remove `NodeConfig` (#472) + ## [0.7.0](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.6.1...lumina-node-wasm-v0.7.0) - 2024-12-02 ### Added diff --git a/node-wasm/Cargo.toml b/node-wasm/Cargo.toml index 72ec741a..79cf1b88 100644 --- a/node-wasm/Cargo.toml +++ b/node-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node-wasm" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "Apache-2.0" description = "Browser compatibility layer for the Lumina node" diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index b5a159b3..4185e14a 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.8.0...lumina-node-v0.9.0) - 2024-12-11 + +### Added + +- *(node)* [**breaking**] Implement `NodeBuilder` and remove `NodeConfig` (#472) + ## [0.8.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.7.0...lumina-node-v0.8.0) - 2024-12-02 ### Added diff --git a/node/Cargo.toml b/node/Cargo.toml index d6b24da7..07360bbb 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node" -version = "0.8.0" +version = "0.9.0" edition = "2021" license = "Apache-2.0" description = "Celestia data availability node implementation in Rust"