From 05280cafbebdce682e4a46457bce5e48587de8b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Zwoli=C5=84ski?= Date: Thu, 13 Feb 2025 13:36:46 +0100 Subject: [PATCH] chore: release --- Cargo.lock | 12 ++++++------ Cargo.toml | 10 +++++----- cli/CHANGELOG.md | 6 ++++++ cli/Cargo.toml | 2 +- grpc/CHANGELOG.md | 6 ++++++ grpc/Cargo.toml | 2 +- node-wasm/CHANGELOG.md | 6 ++++++ node-wasm/Cargo.toml | 2 +- node/CHANGELOG.md | 6 ++++++ node/Cargo.toml | 2 +- rpc/CHANGELOG.md | 6 ++++++ rpc/Cargo.toml | 2 +- types/CHANGELOG.md | 6 ++++++ types/Cargo.toml | 2 +- 14 files changed, 53 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c895eb34..4b6ad59c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -842,7 +842,7 @@ dependencies = [ [[package]] name = "celestia-grpc" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bytes", "celestia-grpc-macros", @@ -899,7 +899,7 @@ dependencies = [ [[package]] name = "celestia-rpc" -version = "0.9.0" +version = "0.9.1" dependencies = [ "anyhow", "async-trait", @@ -922,7 +922,7 @@ dependencies = [ [[package]] name = "celestia-types" -version = "0.10.0" +version = "0.10.1" dependencies = [ "base64", "bech32", @@ -3495,7 +3495,7 @@ dependencies = [ [[package]] name = "lumina-cli" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "axum", @@ -3520,7 +3520,7 @@ dependencies = [ [[package]] name = "lumina-node" -version = "0.9.0" +version = "0.9.1" dependencies = [ "async-trait", "backoff", @@ -3587,7 +3587,7 @@ dependencies = [ [[package]] name = "lumina-node-wasm" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "blockstore", diff --git a/Cargo.toml b/Cargo.toml index 7b2301c8..91153857 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,12 @@ members = ["cli", "grpc", "node", "node-wasm", "node-uniffi", "proto", "rpc", "t [workspace.dependencies] blockstore = "0.7.1" -lumina-node = { version = "0.9.0", path = "node" } -lumina-node-wasm = { version = "0.8.0", path = "node-wasm" } +lumina-node = { version = "0.9.1", path = "node" } +lumina-node-wasm = { version = "0.8.1", path = "node-wasm" } celestia-proto = { version = "0.7.0", path = "proto" } -celestia-grpc = { version = "0.2.0", path = "grpc" } -celestia-rpc = { version = "0.9.0", path = "rpc", default-features = false } -celestia-types = { version = "0.10.0", path = "types", default-features = false } +celestia-grpc = { version = "0.2.1", path = "grpc" } +celestia-rpc = { version = "0.9.1", path = "rpc", default-features = false } +celestia-types = { version = "0.10.1", path = "types", default-features = false } tendermint = { version = "0.40.0", default-features = false } tendermint-proto = "0.40.0" diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 8cd7901c..e9007b7a 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.1](https://github.com/eigerco/lumina/compare/lumina-cli-v0.6.0...lumina-cli-v0.6.1) - 2025-02-13 + +### Other + +- updated the following local packages: celestia-types + ## [0.6.0](https://github.com/eigerco/lumina/compare/lumina-cli-v0.5.2...lumina-cli-v0.6.0) - 2025-01-28 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9dde4760..9e9b0043 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-cli" -version = "0.6.0" +version = "0.6.1" edition = "2021" license = "Apache-2.0" description = "Celestia data availability node implementation in Rust" diff --git a/grpc/CHANGELOG.md b/grpc/CHANGELOG.md index 2b61ee1f..d02d40c6 100644 --- a/grpc/CHANGELOG.md +++ b/grpc/CHANGELOG.md @@ -7,6 +7,12 @@ 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-grpc-v0.2.0...celestia-grpc-v0.2.1) - 2025-02-13 + +### Other + +- updated the following local packages: celestia-types + ## [0.2.0](https://github.com/eigerco/lumina/compare/celestia-grpc-v0.1.0...celestia-grpc-v0.2.0) - 2025-01-28 ### Added diff --git a/grpc/Cargo.toml b/grpc/Cargo.toml index 77993efb..9915f37a 100644 --- a/grpc/Cargo.toml +++ b/grpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-grpc" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "Apache-2.0" description = "A client for interacting with Celestia validator nodes gRPC" diff --git a/node-wasm/CHANGELOG.md b/node-wasm/CHANGELOG.md index 9170c8ba..a1cd0532 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.1](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.8.0...lumina-node-wasm-v0.8.1) - 2025-02-13 + +### Other + +- remove outdated shwap note and link to changelog for js (#536) + ## [0.8.0](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.7.0...lumina-node-wasm-v0.8.0) - 2025-01-28 Summary: diff --git a/node-wasm/Cargo.toml b/node-wasm/Cargo.toml index 9485a26b..e6420c1d 100644 --- a/node-wasm/Cargo.toml +++ b/node-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node-wasm" -version = "0.8.0" +version = "0.8.1" 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 a588e25b..2046b193 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.1](https://github.com/eigerco/lumina/compare/lumina-node-v0.9.0...lumina-node-v0.9.1) - 2025-02-13 + +### Other + +- updated the following local packages: celestia-types, celestia-types, celestia-types + ## [0.9.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.8.0...lumina-node-v0.9.0) - 2025-01-28 ### Added diff --git a/node/Cargo.toml b/node/Cargo.toml index e7aa0188..fbe13f73 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node" -version = "0.9.0" +version = "0.9.1" 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 f8d31246..89d38ac9 100644 --- a/rpc/CHANGELOG.md +++ b/rpc/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.1](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.9.0...celestia-rpc-v0.9.1) - 2025-02-13 + +### Other + +- updated the following local packages: celestia-types + ## [0.9.0](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.8.0...celestia-rpc-v0.9.0) - 2025-01-28 ### Added diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 9d5bd466..769afacf 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-rpc" -version = "0.9.0" +version = "0.9.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 d92be3b0..aab86fab 100644 --- a/types/CHANGELOG.md +++ b/types/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.1](https://github.com/eigerco/lumina/compare/celestia-types-v0.10.0...celestia-types-v0.10.1) - 2025-02-13 + +### Added + +- *(types)* Make fields of `ShareProof` public (#538) + ## [0.10.0](https://github.com/eigerco/lumina/compare/celestia-types-v0.9.0...celestia-types-v0.10.0) - 2025-01-28 ### Added diff --git a/types/Cargo.toml b/types/Cargo.toml index 00357f40..e0cd715a 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-types" -version = "0.10.0" +version = "0.10.1" edition = "2021" license = "Apache-2.0" description = "Core types, traits and constants for working with the Celestia ecosystem"