Skip to content

Commit 12ca242

Browse files
Release/v0.3.6 (#66)
* feat: added solana/kit + adjusted delegate instruction * chore: fixed versioning conflict * fix: linter & CI * refactor: lint fix * fix: workflow automation with kit and web3js * fix: workflow automation with kit and web3js * release: 0.3.6 * release: 0.3.6 --------- Co-authored-by: Gabriele Picco <[email protected]>
1 parent a682adf commit 12ca242

File tree

5 files changed

+21
-19
lines changed

5 files changed

+21
-19
lines changed

rust/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111
resolver = "2"
1212

1313
[workspace.package]
14-
version = "0.3.5"
14+
version = "0.3.6"
1515
authors = ["Magicblock Labs <[email protected]>"]
1616
edition = "2021"
1717
license = "MIT"
@@ -22,10 +22,10 @@ readme = "README.md"
2222
keywords = ["solana", "crypto", "delegation", "ephemeral-rollups", "magicblock"]
2323

2424
[workspace.dependencies]
25-
ephemeral-rollups-sdk = { path = "sdk", version = "=0.3.5" }
26-
ephemeral-rollups-sdk-attribute-ephemeral = { path = "ephemeral", version = "=0.3.5" }
27-
ephemeral-rollups-sdk-attribute-delegate = { path = "delegate", version = "=0.3.5" }
28-
ephemeral-rollups-sdk-attribute-commit = { path = "commit-attribute", version = "=0.3.5" }
25+
ephemeral-rollups-sdk = { path = "sdk", version = "=0.3.6" }
26+
ephemeral-rollups-sdk-attribute-ephemeral = { path = "ephemeral", version = "=0.3.6" }
27+
ephemeral-rollups-sdk-attribute-delegate = { path = "delegate", version = "=0.3.6" }
28+
ephemeral-rollups-sdk-attribute-commit = { path = "commit-attribute", version = "=0.3.6" }
2929

3030
# Magicblock
3131
magicblock-delegation-program = { version = "1.1.2", features = ["no-entrypoint"] }

ts/kit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@magicblock-labs/ephemeral-rollups-kit",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"author": "MagicBlock Labs",
55
"license": "MIT",
66
"publishConfig": {

ts/web3js/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@magicblock-labs/ephemeral-rollups-sdk",
3-
"version": "0.3.4",
3+
"version": "0.3.6",
44
"author": "MagicBlock Labs",
55
"license": "MIT",
66
"publishConfig": {
@@ -48,8 +48,6 @@
4848
"rpc-websockets": "^9.0.4",
4949
"typescript": "^5.3.0"
5050
},
51-
"optionalDependencies": {
52-
53-
},
51+
"optionalDependencies": {},
5452
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
5553
}

version_align.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,20 @@ esac
2222
# Update the version for all crates in the Cargo.toml workspace.dependencies section
2323
sed "${sedi[@]}" -e '/\[workspace.dependencies\]/,/# Magicblock/s/version = ".*"/version = "='$version'"/' rust/Cargo.toml
2424

25-
# Update the version in clients/bolt-sdk/package.json
26-
jq --arg version "$version" '.version = $version' ts/package.json > temp.json && mv temp.json ts/package.json
25+
# Update the version in ts/web3js/package.json
26+
jq --arg version "$version" '.version = $version' ts/web3js/package.json > temp.json && mv temp.json ts/web3js/package.json
27+
28+
# Update the version in ts/kit/package.json
29+
jq --arg version "$version" '.version = $version' ts/kit/package.json > temp.json && mv temp.json ts/kit/package.json
2730

2831
# Potential for collisions in Cargo.lock, use cargo update to update it
2932
cargo update --workspace --manifest-path rust/Cargo.toml
3033

3134
# Check if any changes have been made to the specified files, if running with --check
3235
if [[ "$1" == "--check" ]]; then
3336
files_to_check=(
34-
"ts/package.json"
37+
"ts/kit/package.json"
38+
"ts/web3js/package.json"
3539
"rust/Cargo.toml"
3640
)
3741

0 commit comments

Comments
 (0)