Skip to content

Commit 6e10cfb

Browse files
🔖 Release v0.1.4 (#42)
* 🔖 Release v0.1.4 * 👷 Fix CI workflow * 👷 Fix CI/CD workflow
1 parent fcd0b4b commit 6e10cfb

File tree

7 files changed

+54
-50
lines changed

7 files changed

+54
-50
lines changed

.github/workflows/publish-bolt-sdk.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,11 @@ jobs:
175175
176176
- name: npm publish
177177
run: |
178-
npm install --global yarn
179-
npm install --global eslint
180-
yarn install
178+
npm install --global eslint@^8.33.0
179+
npm install
181180
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
182181
npm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
183-
cd clients/bolt-sdk/ && yarn build && yarn lint:fix && cd ../../ && yarn lint:fix
182+
cd clients/bolt-sdk/ && npm run build && npm run lint:fix && cd ../../ && npm run lint:fix
184183
cd clients/bolt-sdk/
185184
if [ "${DRY_RUN}" = "true" ]; then
186185
echo "Running npm publish in dry-run mode"

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
## [0.1.4] - 2024-04-06
3+
4+
### ✨️ Features
5+
- Improve Bolt typescript SDK (#41)
6+
27
## [0.1.3] - 2024-04-02
38

49

Cargo.lock

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

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,28 @@ members = [
77
]
88

99
[workspace.package]
10-
version = "0.1.3"
10+
version = "0.1.4"
1111
authors = ["Magicblock Labs <[email protected]>"]
1212
repository = "https://github.com/magicblock-labs/bolt"
1313
homepage = "https://www.magicblock.gg/"
1414
license = "MIT"
1515
edition = "2021"
1616

1717
[workspace.dependencies]
18-
bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.3" }
19-
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.3" }
20-
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.3"}
21-
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.3" }
22-
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.3" }
23-
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.3" }
24-
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.3" }
25-
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.3" }
26-
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.3" }
27-
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.3" }
28-
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.3" }
29-
world = { path = "programs/world", features = ["cpi"], version = "=0.1.3"}
30-
bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.3"}
31-
bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.3"}
18+
bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.4" }
19+
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.4" }
20+
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.4"}
21+
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.4" }
22+
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.4" }
23+
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.4" }
24+
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.4" }
25+
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.4" }
26+
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.4" }
27+
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.4" }
28+
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.4" }
29+
world = { path = "programs/world", features = ["cpi"], version = "=0.1.4"}
30+
bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.4"}
31+
bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.4"}
3232

3333
## External crates
3434
anchor-lang = { version = "0.29.0", git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909", features = ["init-if-needed"] }

cli/npm-package/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@magicblock-labs/bolt-cli",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "Bolt CLI tool",
55
"homepage": "https://github.com/magicblock-labs/bolt#readme",
66
"bugs": {
@@ -29,13 +29,13 @@
2929
"typescript": "^4.9.4"
3030
},
3131
"optionalDependencies": {
32-
"@magicblock-labs/bolt-cli-darwin-x64": "0.1.3",
33-
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.3",
34-
"@magicblock-labs/bolt-cli-linux-x86": "0.1.3",
35-
"@magicblock-labs/bolt-cli-linux-x64": "0.1.3",
36-
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.3",
37-
"@magicblock-labs/bolt-cli-windows-x86": "0.1.3",
38-
"@magicblock-labs/bolt-cli-windows-x64": "0.1.3"
32+
"@magicblock-labs/bolt-cli-darwin-x64": "0.1.4",
33+
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.4",
34+
"@magicblock-labs/bolt-cli-linux-x86": "0.1.4",
35+
"@magicblock-labs/bolt-cli-linux-x64": "0.1.4",
36+
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.4",
37+
"@magicblock-labs/bolt-cli-windows-x86": "0.1.4",
38+
"@magicblock-labs/bolt-cli-windows-x64": "0.1.4"
3939
},
4040
"publishConfig": {
4141
"access": "public"

cli/npm-package/package.json.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@magicblock-labs/${node_pkg}",
33
"description": "Bolt CLI tool (${node_pkg})",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/magicblock-labs/bolt.git"

clients/bolt-sdk/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/bolt-sdk",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "Bolt typescript SDK",
55
"author": "[email protected]",
66
"license": "MIT",

0 commit comments

Comments
 (0)