From 4c4f6bbb7bdce107fdaeef9b08ba50fde609facc Mon Sep 17 00:00:00 2001 From: Maciej <34972409+zvolin@users.noreply.github.com> Date: Fri, 10 May 2024 10:05:10 +0000 Subject: [PATCH] chore: release Signed-off-by: Maciej <34972409+zvolin@users.noreply.github.com> --- Cargo.lock | 10 +++++----- Cargo.toml | 8 ++++---- cli/CHANGELOG.md | 5 +++++ cli/Cargo.toml | 2 +- node-wasm/CHANGELOG.md | 8 ++++++++ node-wasm/Cargo.toml | 2 +- node/CHANGELOG.md | 8 ++++++++ node/Cargo.toml | 2 +- rpc/CHANGELOG.md | 8 ++++++++ rpc/Cargo.toml | 2 +- types/CHANGELOG.md | 8 ++++++++ types/Cargo.toml | 2 +- 12 files changed, 51 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1807c5b20..3980d232a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -730,7 +730,7 @@ dependencies = [ [[package]] name = "celestia-rpc" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "async-trait", @@ -798,7 +798,7 @@ dependencies = [ [[package]] name = "celestia-types" -version = "0.2.0" +version = "0.3.0" dependencies = [ "base64 0.21.7", "bech32", @@ -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..d46f005a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,11 @@ 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 } +celestia-rpc = { version = "0.2.1", path = "rpc", default-features = false } +celestia-types = { version = "0.3.0", path = "types", default-features = false } libp2p = "0.53.2" nmt-rs = "0.1.0" celestia-tendermint = { version = "0.32.1", default-features = false } diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 72d30d4ae..dd45137e1 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-05-10 + +### 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..e731ef887 100644 --- a/node-wasm/CHANGELOG.md +++ b/node-wasm/CHANGELOG.md @@ -6,6 +6,14 @@ 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-05-10 + +### Added +- *(node/daser)* [**breaking**] Implement backward sampling and sampling window ([#269](https://github.com/eigerco/lumina/pull/269)) + +### Fixed +- new lints coming with 1.78 and 1.80-nightly ([#275](https://github.com/eigerco/lumina/pull/275)) + ## [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..f5f4c9913 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -6,6 +6,14 @@ 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-05-10 + +### Added +- *(node/daser)* [**breaking**] Implement backward sampling and sampling window ([#269](https://github.com/eigerco/lumina/pull/269)) + +### Fixed +- new lints coming with 1.78 and 1.80-nightly ([#275](https://github.com/eigerco/lumina/pull/275)) + ## [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 da62eeb18..056c9b2bb 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" diff --git a/rpc/CHANGELOG.md b/rpc/CHANGELOG.md index bd04d1847..b34a45fb0 100644 --- a/rpc/CHANGELOG.md +++ b/rpc/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.2.0...celestia-rpc-v0.2.1) - 2024-05-10 + +### Added +- feat!(types): Add Blob::index field introduced in celestia 0.13 ([#274](https://github.com/eigerco/lumina/pull/274)) + +### Fixed +- new lints coming with 1.78 and 1.80-nightly ([#275](https://github.com/eigerco/lumina/pull/275)) + ## [0.2.0](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.1.1...celestia-rpc-v0.2.0) - 2024-04-18 ### Added diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 069a6b52f..44e7fccd4 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-rpc" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "Apache-2.0" description = "A collection of traits for interacting with Celestia data availability nodes RPC" diff --git a/types/CHANGELOG.md b/types/CHANGELOG.md index 4902b4543..44e9e8c96 100644 --- a/types/CHANGELOG.md +++ b/types/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/eigerco/lumina/compare/celestia-types-v0.2.0...celestia-types-v0.3.0) - 2024-05-10 + +### Added +- feat!(types): Add Blob::index field introduced in celestia 0.13 ([#274](https://github.com/eigerco/lumina/pull/274)) + +### Fixed +- new lints coming with 1.78 and 1.80-nightly ([#275](https://github.com/eigerco/lumina/pull/275)) + ## [0.2.0](https://github.com/eigerco/lumina/compare/celestia-types-v0.1.1...celestia-types-v0.2.0) - 2024-04-18 ### Added diff --git a/types/Cargo.toml b/types/Cargo.toml index f27d12607..8a8ef5cb7 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-types" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "Apache-2.0" description = "Core types, traits and constants for working with the Celestia ecosystem"