From 9ec9c5a661196100f7611d6cbe9c28bedaf438c1 Mon Sep 17 00:00:00 2001 From: Maciej <34972409+zvolin@users.noreply.github.com> Date: Mon, 29 Apr 2024 09:50:33 +0000 Subject: [PATCH] chore: release Signed-off-by: Maciej <34972409+zvolin@users.noreply.github.com> --- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- cli/CHANGELOG.md | 5 +++++ cli/Cargo.toml | 2 +- node-wasm/CHANGELOG.md | 5 +++++ node-wasm/Cargo.toml | 2 +- node/CHANGELOG.md | 5 +++++ node/Cargo.toml | 2 +- 8 files changed, 23 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1807c5b20..791c72dd3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2768,7 +2768,7 @@ dependencies = [ [[package]] name = "lumina-cli" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "axum", @@ -2793,7 +2793,7 @@ dependencies = [ [[package]] name = "lumina-node" -version = "0.2.0" +version = "0.3.0" dependencies = [ "async-trait", "backoff", @@ -2839,7 +2839,7 @@ dependencies = [ [[package]] name = "lumina-node-wasm" -version = "0.1.1" +version = "0.2.0" dependencies = [ "anyhow", "celestia-types", diff --git a/Cargo.toml b/Cargo.toml index fbdc5d2ae..23e505640 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,8 @@ members = ["cli", "node", "node-wasm", "proto", "rpc", "types"] [workspace.dependencies] blockstore = "0.5" -lumina-node = { version = "0.2.0", path = "node" } -lumina-node-wasm = { version = "0.1.1", path = "node-wasm" } +lumina-node = { version = "0.3.0", path = "node" } +lumina-node-wasm = { version = "0.2.0", path = "node-wasm" } celestia-proto = { version = "0.2.0", path = "proto" } celestia-rpc = { version = "0.2.0", path = "rpc", default-features = false } celestia-types = { version = "0.2.0", path = "types", default-features = false } diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 72d30d4ae..4e278369a 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/eigerco/lumina/compare/lumina-cli-v0.2.0...lumina-cli-v0.2.1) - 2024-04-29 + +### Other +- update Cargo.lock dependencies + ## [0.2.0](https://github.com/eigerco/lumina/compare/lumina-cli-v0.1.0...lumina-cli-v0.2.0) - 2024-04-18 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index cbf0baa1f..034eadd95 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-cli" -version = "0.2.0" +version = "0.2.1" 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 903c5dbd5..cc9804387 100644 --- a/node-wasm/CHANGELOG.md +++ b/node-wasm/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.1.1...lumina-node-wasm-v0.2.0) - 2024-04-29 + +### Added +- *(node/daser)* [**breaking**] Implement backward sampling and sampling window ([#269](https://github.com/eigerco/lumina/pull/269)) + ## [0.1.1](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.1.0...lumina-node-wasm-v0.1.1) - 2024-04-18 ### Added diff --git a/node-wasm/Cargo.toml b/node-wasm/Cargo.toml index cf92370af..95811d5c1 100644 --- a/node-wasm/Cargo.toml +++ b/node-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node-wasm" -version = "0.1.1" +version = "0.2.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 97f972ed7..ea7d3aabf 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.2.0...lumina-node-v0.3.0) - 2024-04-29 + +### Added +- *(node/daser)* [**breaking**] Implement backward sampling and sampling window ([#269](https://github.com/eigerco/lumina/pull/269)) + ## [0.2.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.1.1...lumina-node-v0.2.0) - 2024-04-18 ### Added diff --git a/node/Cargo.toml b/node/Cargo.toml index 06502aeed..82c6a1c93 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "Apache-2.0" description = "Celestia data availability node implementation in Rust"