diff --git a/Cargo.lock b/Cargo.lock index 06f08cd6..c246ec72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -734,7 +734,7 @@ dependencies = [ [[package]] name = "celestia-rpc" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anyhow", "async-trait", @@ -804,7 +804,7 @@ dependencies = [ [[package]] name = "celestia-types" -version = "0.7.0" +version = "0.8.0" dependencies = [ "base64", "bech32", @@ -3242,7 +3242,7 @@ dependencies = [ [[package]] name = "lumina-cli" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "axum", @@ -3266,7 +3266,7 @@ dependencies = [ [[package]] name = "lumina-node" -version = "0.6.0" +version = "0.7.0" dependencies = [ "async-trait", "backoff", @@ -3316,7 +3316,7 @@ dependencies = [ [[package]] name = "lumina-node-wasm" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "blockstore", diff --git a/Cargo.toml b/Cargo.toml index 8083b7bf..f906f899 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.6.0", path = "node" } -lumina-node-wasm = { version = "0.6.0", path = "node-wasm" } +lumina-node = { version = "0.7.0", path = "node" } +lumina-node-wasm = { version = "0.6.1", path = "node-wasm" } celestia-proto = { version = "0.5.0", path = "proto" } -celestia-rpc = { version = "0.7.0", path = "rpc", default-features = false } -celestia-types = { version = "0.7.0", path = "types", default-features = false } +celestia-rpc = { version = "0.7.1", path = "rpc", default-features = false } +celestia-types = { version = "0.8.0", path = "types", default-features = false } celestia-tendermint = { version = "0.32.2", default-features = false } celestia-tendermint-proto = "0.32.2" diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 1288bff5..043b24ae 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.5.1](https://github.com/eigerco/lumina/compare/lumina-cli-v0.5.0...lumina-cli-v0.5.1) - 2024-11-07 + +### Other + +- updated the following local packages: celestia-types, lumina-node + ## [0.5.0](https://github.com/eigerco/lumina/compare/lumina-cli-v0.4.1...lumina-cli-v0.5.0) - 2024-10-25 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9b67fc42..4ce24858 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-cli" -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/node-wasm/CHANGELOG.md b/node-wasm/CHANGELOG.md index 2421a42b..a77bc0c5 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.6.1](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.6.0...lumina-node-wasm-v0.6.1) - 2024-11-07 + +### Other + +- update lumina-node npm package + ## [0.6.0](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.5.2...lumina-node-wasm-v0.6.0) - 2024-10-25 ### Added diff --git a/node-wasm/Cargo.toml b/node-wasm/Cargo.toml index ae273cb9..6ac2ef63 100644 --- a/node-wasm/Cargo.toml +++ b/node-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node-wasm" -version = "0.6.0" +version = "0.6.1" edition = "2021" license = "Apache-2.0" description = "Browser compatibility layer for the Lumina node" diff --git a/node-wasm/js/package.json b/node-wasm/js/package.json index d0f3079e..d1a9f3c4 100644 --- a/node-wasm/js/package.json +++ b/node-wasm/js/package.json @@ -5,7 +5,7 @@ "Eiger " ], "description": "Lumina node for Celestia, running in browser", - "version": "0.6.0", + "version": "0.6.1", "license": "Apache-2.0", "repository": { "type": "git", @@ -19,7 +19,7 @@ "main": "index.js", "homepage": "https://www.eiger.co", "dependencies": { - "lumina-node-wasm": "0.6.0" + "lumina-node-wasm": "0.6.1" }, "keywords": [ "blockchain", diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 599e1a74..963b1bad 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.6.0...lumina-node-v0.7.0) - 2024-11-07 + +### Added + +- *(node)* [**breaking**] add a method to get all blobs using shwap ([#452](https://github.com/eigerco/lumina/pull/452)) + +### Fixed + +- *(node)* redial peers if we go below limits ([#460](https://github.com/eigerco/lumina/pull/460)) + ## [0.6.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.5.1...lumina-node-v0.6.0) - 2024-10-25 ### Added diff --git a/node/Cargo.toml b/node/Cargo.toml index 894c4185..87cc294c 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lumina-node" -version = "0.6.0" +version = "0.7.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 75cc5d89..7aa0c6f0 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.7.1](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.7.0...celestia-rpc-v0.7.1) - 2024-11-07 + +### Other + +- updated the following local packages: celestia-types + ## [0.7.0](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.6.0...celestia-rpc-v0.7.0) - 2024-10-25 ### Added diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 841eb841..b3f4724e 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-rpc" -version = "0.7.0" +version = "0.7.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 2a686957..f3aa8b96 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.8.0](https://github.com/eigerco/lumina/compare/celestia-types-v0.7.0...celestia-types-v0.8.0) - 2024-11-07 + +### Added + +- *(node)* [**breaking**] add a method to get all blobs using shwap ([#452](https://github.com/eigerco/lumina/pull/452)) + ## [0.7.0](https://github.com/eigerco/lumina/compare/celestia-types-v0.6.1...celestia-types-v0.7.0) - 2024-10-25 ### Added diff --git a/types/Cargo.toml b/types/Cargo.toml index 694519cc..9161b80a 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celestia-types" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "Apache-2.0" description = "Core types, traits and constants for working with the Celestia ecosystem"