From 02d5f978b75f617c14c65eb2bea77da40f13630d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Zwoli=C5=84ski?= Date: Wed, 9 Oct 2024 11:03:01 +0200 Subject: [PATCH] chore: release --- Cargo.lock | 12 ++++++------ Cargo.toml | 10 +++++----- cli/CHANGELOG.md | 6 ++++++ cli/Cargo.toml | 2 +- node-wasm/CHANGELOG.md | 6 ++++++ node-wasm/Cargo.toml | 2 +- node/CHANGELOG.md | 6 ++++++ node/Cargo.toml | 2 +- proto/CHANGELOG.md | 6 ++++++ proto/Cargo.toml | 2 +- rpc/CHANGELOG.md | 6 ++++++ rpc/Cargo.toml | 2 +- types/CHANGELOG.md | 10 ++++++++++ types/Cargo.toml | 2 +- 14 files changed, 57 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 700a48b5..c2e8449d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -720,7 +720,7 @@ checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695" [[package]] name = "celestia-proto" -version = "0.4.0" +version = "0.4.1" dependencies = [ "celestia-tendermint-proto", "prost", @@ -734,7 +734,7 @@ dependencies = [ [[package]] name = "celestia-rpc" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "async-trait", @@ -804,7 +804,7 @@ dependencies = [ [[package]] name = "celestia-types" -version = "0.6.0" +version = "0.6.1" dependencies = [ "base64", "bech32", @@ -3241,7 +3241,7 @@ dependencies = [ [[package]] name = "lumina-cli" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "axum", @@ -3264,7 +3264,7 @@ dependencies = [ [[package]] name = "lumina-node" -version = "0.5.0" +version = "0.5.1" dependencies = [ "async-trait", "backoff", @@ -3314,7 +3314,7 @@ dependencies = [ [[package]] name = "lumina-node-wasm" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "blockstore", diff --git a/Cargo.toml b/Cargo.toml index 3dce5c97..c6cff83c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,11 @@ members = ["cli", "node", "node-wasm", "proto", "rpc", "types"] [workspace.dependencies] blockstore = "0.7.0" -lumina-node = { version = "0.5.0", path = "node" } -lumina-node-wasm = { version = "0.5.0", path = "node-wasm" } -celestia-proto = { version = "0.4.0", path = "proto" } -celestia-rpc = { version = "0.5.0", path = "rpc", default-features = false } -celestia-types = { version = "0.6.0", path = "types", default-features = false } +lumina-node = { version = "0.5.1", path = "node" } +lumina-node-wasm = { version = "0.5.1", path = "node-wasm" } +celestia-proto = { version = "0.4.1", path = "proto" } +celestia-rpc = { version = "0.5.1", path = "rpc", default-features = false } +celestia-types = { version = "0.6.1", path = "types", default-features = false } libp2p = "0.54.0" nmt-rs = "0.2.1" celestia-tendermint = { version = "0.32.2", default-features = false } diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 26ce1ead..af0218bf 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.4.1](https://github.com/eigerco/lumina/compare/lumina-cli-v0.4.0...lumina-cli-v0.4.1) - 2024-10-09 + +### Added + +- setup local demo page with webpack ([#388](https://github.com/eigerco/lumina/pull/388)) + ## [0.4.0](https://github.com/eigerco/lumina/compare/lumina-cli-v0.3.1...lumina-cli-v0.4.0) - 2024-10-03 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 38d89906..7150c03d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-cli" -version = "0.4.0" +version = "0.4.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 1a55ce3e..c2507892 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.5.1](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.5.0...lumina-node-wasm-v0.5.1) - 2024-10-09 + +### Added + +- setup local demo page with webpack ([#388](https://github.com/eigerco/lumina/pull/388)) + ## [0.5.0](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.3.0...lumina-node-wasm-v0.5.0) - 2024-10-03 ### Added diff --git a/node-wasm/Cargo.toml b/node-wasm/Cargo.toml index a91e9c76..325d20f5 100644 --- a/node-wasm/Cargo.toml +++ b/node-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node-wasm" -version = "0.5.0" +version = "0.5.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 4c325e12..43009101 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.5.1](https://github.com/eigerco/lumina/compare/lumina-node-v0.5.0...lumina-node-v0.5.1) - 2024-10-09 + +### Other + +- updated the following local packages: celestia-rpc, celestia-types, celestia-types, celestia-types, celestia-proto + ## [0.5.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.4.0...lumina-node-v0.5.0) - 2024-10-03 ### Added diff --git a/node/Cargo.toml b/node/Cargo.toml index aaf810ef..9f2f1d3c 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node" -version = "0.5.0" +version = "0.5.1" edition = "2021" license = "Apache-2.0" description = "Celestia data availability node implementation in Rust" diff --git a/proto/CHANGELOG.md b/proto/CHANGELOG.md index d9e60f0f..5bb56f58 100644 --- a/proto/CHANGELOG.md +++ b/proto/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/eigerco/lumina/compare/celestia-proto-v0.4.0...celestia-proto-v0.4.1) - 2024-10-09 + +### Other + +- *(types)* Use protox instead of requiring protoc when building ([#402](https://github.com/eigerco/lumina/pull/402)) + ## [0.4.0](https://github.com/eigerco/lumina/compare/celestia-proto-v0.3.1...celestia-proto-v0.4.0) - 2024-10-03 ### Added diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 28ddaeea..9ab5ce32 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-proto" -version = "0.4.0" +version = "0.4.1" edition = "2021" license = "Apache-2.0" description = "Rust implementation of proto structs used in celestia ecosystem" diff --git a/rpc/CHANGELOG.md b/rpc/CHANGELOG.md index d9d31d9b..a2385734 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.5.1](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.5.0...celestia-rpc-v0.5.1) - 2024-10-09 + +### Fixed + +- fix!(rpc): use correct blob type in state submit pay for blob ([#418](https://github.com/eigerco/lumina/pull/418)) + ## [0.5.0](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.4.1...celestia-rpc-v0.5.0) - 2024-10-03 ### Added diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 30e32102..bb33059e 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-rpc" -version = "0.5.0" +version = "0.5.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 eab2c0db..85d3ae08 100644 --- a/types/CHANGELOG.md +++ b/types/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1](https://github.com/eigerco/lumina/compare/celestia-types-v0.6.0...celestia-types-v0.6.1) - 2024-10-09 + +### Added + +- *(types)* derive PartialOrd and Ord for addresses ([#414](https://github.com/eigerco/lumina/pull/414)) + +### Fixed + +- fix!(rpc): use correct blob type in state submit pay for blob ([#418](https://github.com/eigerco/lumina/pull/418)) + ## [0.6.0](https://github.com/eigerco/lumina/compare/celestia-types-v0.5.0...celestia-types-v0.6.0) - 2024-10-03 ### Added diff --git a/types/Cargo.toml b/types/Cargo.toml index eaa72376..2a148cbd 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-types" -version = "0.6.0" +version = "0.6.1" edition = "2021" license = "Apache-2.0" description = "Core types, traits and constants for working with the Celestia ecosystem"