Skip to content

Commit

Permalink
chore: release (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvolin authored Nov 7, 2024
1 parent a122922 commit 89450ce
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 16 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
6 changes: 6 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions node-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion node-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions node-wasm/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Eiger <hello@eiger.co>"
],
"description": "Lumina node for Celestia, running in browser",
"version": "0.6.0",
"version": "0.6.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand All @@ -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",
Expand Down
10 changes: 10 additions & 0 deletions node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 89450ce

Please sign in to comment.