From f11959550851afb8c2062b30e38cc87242467cdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Zwoli=C5=84ski?= Date: Fri, 23 Aug 2024 12:17:06 +0200 Subject: [PATCH] chore: release (#371) --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- node/CHANGELOG.md | 5 +++++ node/Cargo.toml | 2 +- rpc/CHANGELOG.md | 5 +++++ rpc/Cargo.toml | 2 +- types/CHANGELOG.md | 6 ++++++ types/Cargo.toml | 2 +- 8 files changed, 25 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec9ee53f..77053abe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -729,7 +729,7 @@ dependencies = [ [[package]] name = "celestia-rpc" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", @@ -799,7 +799,7 @@ dependencies = [ [[package]] name = "celestia-types" -version = "0.3.0" +version = "0.4.0" dependencies = [ "base64", "bech32", @@ -3237,7 +3237,7 @@ dependencies = [ [[package]] name = "lumina-node" -version = "0.3.0" +version = "0.3.1" dependencies = [ "async-trait", "backoff", diff --git a/Cargo.toml b/Cargo.toml index 2ba6096f..eb49771b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,11 @@ members = ["cli", "node", "node-wasm", "proto", "rpc", "types"] [workspace.dependencies] blockstore = "0.6.1" -lumina-node = { version = "0.3.0", path = "node" } +lumina-node = { version = "0.3.1", path = "node" } lumina-node-wasm = { version = "0.2.0", path = "node-wasm" } celestia-proto = { version = "0.3.0", path = "proto" } -celestia-rpc = { version = "0.3.0", path = "rpc", default-features = false } -celestia-types = { version = "0.3.0", path = "types", default-features = false } +celestia-rpc = { version = "0.4.0", path = "rpc", default-features = false } +celestia-types = { version = "0.4.0", path = "types", default-features = false } libp2p = "0.54.0" nmt-rs = "0.2.1" celestia-tendermint = { version = "0.32.1", default-features = false } diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index f605e45b..bf65ebf4 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.1](https://github.com/eigerco/lumina/compare/lumina-node-v0.3.0...lumina-node-v0.3.1) - 2024-08-22 + +### Added +- Header pruning ([#351](https://github.com/eigerco/lumina/pull/351)) + ## [0.3.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.2.0...lumina-node-v0.3.0) - 2024-08-13 ### Added diff --git a/node/Cargo.toml b/node/Cargo.toml index db683c12..738de9cf 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node" -version = "0.3.0" +version = "0.3.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 8203182a..60573cae 100644 --- a/rpc/CHANGELOG.md +++ b/rpc/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.3.0...celestia-rpc-v0.4.0) - 2024-08-22 + +### Added +- updating API for parity with celestia-node v0.15.0 ([#340](https://github.com/eigerco/lumina/pull/340)) + ## [0.3.0](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.2.0...celestia-rpc-v0.3.0) - 2024-08-13 ### Added diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index a4ec6da4..3ccd6a33 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-rpc" -version = "0.3.0" +version = "0.4.0" 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 729797cb..2ac17a48 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.4.0](https://github.com/eigerco/lumina/compare/celestia-types-v0.3.0...celestia-types-v0.4.0) - 2024-08-22 + +### Added +- updating API for parity with celestia-node v0.15.0 ([#340](https://github.com/eigerco/lumina/pull/340)) +- Header pruning ([#351](https://github.com/eigerco/lumina/pull/351)) + ## [0.3.0](https://github.com/eigerco/lumina/compare/celestia-types-v0.2.0...celestia-types-v0.3.0) - 2024-08-13 ### Added diff --git a/types/Cargo.toml b/types/Cargo.toml index 7d489b87..f887e258 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-types" -version = "0.3.0" +version = "0.4.0" edition = "2021" license = "Apache-2.0" description = "Core types, traits and constants for working with the Celestia ecosystem"