Skip to content

Commit

Permalink
chore: release (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvolin authored Oct 3, 2024
1 parent 64cfefa commit ece6f98
Show file tree
Hide file tree
Showing 17 changed files with 143 additions and 75 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,28 @@ jobs:
echo "Version updated: ${node_wasm_version}"
fi
release-npm:
name: Release-npm
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_PLZ_TOKEN }}

- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
version: "23.3"
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Install wasm-pack
uses: jetli/[email protected]

- name: Release to npm
env:
NPM_REGISTRY_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

10 changes: 5 additions & 5 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.4.0", path = "node" }
lumina-node-wasm = { version = "0.3.0", path = "node-wasm" }
celestia-proto = { version = "0.3.1", path = "proto" }
celestia-rpc = { version = "0.4.1", path = "rpc", default-features = false }
celestia-types = { version = "0.5.0", path = "types", default-features = false }
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 }
libp2p = "0.54.0"
nmt-rs = "0.2.1"
celestia-tendermint = { version = "0.32.2", default-features = false }
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.4.0](https:/eigerco/lumina/compare/lumina-cli-v0.3.1...lumina-cli-v0.4.0) - 2024-10-03

### Added

- *(node,node-wasm)* [**breaking**] Integrate graceful shutdown in WASM ([#396](https:/eigerco/lumina/pull/396))

## [0.3.1](https:/eigerco/lumina/compare/lumina-cli-v0.3.0...lumina-cli-v0.3.1) - 2024-09-24

### Other
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.3.1"
version = "0.4.0"
edition = "2021"
license = "Apache-2.0"
description = "Celestia data availability node implementation in Rust"
Expand Down
17 changes: 17 additions & 0 deletions node-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https:/eigerco/lumina/compare/lumina-node-wasm-v0.3.0...lumina-node-wasm-v0.5.0) - 2024-10-03

### Added

- *(node,node-wasm)* [**breaking**] Integrate graceful shutdown in WASM ([#396](https:/eigerco/lumina/pull/396))

### Other

- *(node-wasm)* add automatic generation of the types file and README ([#408](https:/eigerco/lumina/pull/408))
- Include API in readme ([#409](https:/eigerco/lumina/pull/409))
- *(node-wasm)* Switch to bundler target for wasm-pack for manifest v3 ([#398](https:/eigerco/lumina/pull/398))
- *(node-wasm)* clarify edge case when polling worker on startup ([#390](https:/eigerco/lumina/pull/390))

## 0.4.0

This version was skipped because by accident 0.3.0 was released to npmjs also as 0.3.1 and 0.4.0.

## [0.3.0](https:/eigerco/lumina/compare/lumina-node-wasm-v0.2.0...lumina-node-wasm-v0.3.0) - 2024-09-24

### 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.3.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Browser compatibility layer for the Lumina node"
Expand Down
Loading

0 comments on commit ece6f98

Please sign in to comment.