Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: bump version to v0.2.1 #18

Merged
merged 1 commit into from
Jan 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
1. **Create a Release Branch**
Create a new branch named `release/v*.*.*`.

2. **Update Version in `Cargo.toml`**
2. **Update Version in `rust/Cargo.toml`**
Increment the version number in the `Cargo.toml` file according to the release type (major, minor, or patch).

3. **Align Versions**
Run the `./scripts/version-align.sh` script. This will:
Run the `.version-align.sh` script. This will:
- Update the version of all internal crates and npm packages.
- Generate the updated crates.

Expand Down
10 changes: 5 additions & 5 deletions rust/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 rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.2.0"
version = "0.2.1"
authors = ["Magicblock Labs <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -21,10 +21,10 @@ readme = "../README.md"
keywords = ["solana", "crypto", "delegation", "ephemeral-rollups", "magicblock"]

[workspace.dependencies]
ephemeral-rollups-sdk = { path = "sdk", version = "0.2.0" }
ephemeral-rollups-sdk-attribute-ephemeral = { path = "ephemeral", version = "=0.2.0" }
ephemeral-rollups-sdk-attribute-delegate = { path = "delegate", version = "=0.2.0" }
ephemeral-rollups-sdk-attribute-commit = { path = "commit-attribute", version = "=0.2.0" }
ephemeral-rollups-sdk = { path = "sdk", version = "=0.2.1" }
ephemeral-rollups-sdk-attribute-ephemeral = { path = "ephemeral", version = "=0.2.1" }
ephemeral-rollups-sdk-attribute-delegate = { path = "delegate", version = "=0.2.1" }
ephemeral-rollups-sdk-attribute-commit = { path = "commit-attribute", version = "=0.2.1" }

## External crates
anchor-lang = "0.30.1"
Expand Down
2 changes: 1 addition & 1 deletion ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@magicblock-labs/ephemeral-rollups-sdk",
"version": "0.2.0",
"version": "0.2.1",
"author": "MagicBlock Labs",
"license": "MIT",
"publishConfig": {
Expand Down
Loading