Skip to content

Commit

Permalink
🔖 Release v0.1.4 (#42)
Browse files Browse the repository at this point in the history
* 🔖 Release v0.1.4

* 👷 Fix CI workflow

* 👷 Fix CI/CD workflow
  • Loading branch information
GabrielePicco authored Apr 6, 2024
1 parent fcd0b4b commit 6e10cfb
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 50 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish-bolt-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,11 @@ jobs:
- name: npm publish
run: |
npm install --global yarn
npm install --global eslint
yarn install
npm install --global eslint@^8.33.0
npm install
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
npm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
cd clients/bolt-sdk/ && yarn build && yarn lint:fix && cd ../../ && yarn lint:fix
cd clients/bolt-sdk/ && npm run build && npm run lint:fix && cd ../../ && npm run lint:fix
cd clients/bolt-sdk/
if [ "${DRY_RUN}" = "true" ]; then
echo "Running npm publish in dry-run mode"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

## [0.1.4] - 2024-04-06

### ✨️ Features
- Improve Bolt typescript SDK (#41)

## [0.1.3] - 2024-04-02


Expand Down
42 changes: 21 additions & 21 deletions Cargo.lock

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

30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,28 @@ members = [
]

[workspace.package]
version = "0.1.3"
version = "0.1.4"
authors = ["Magicblock Labs <dev@magicblock.gg>"]
repository = "https://github.com/magicblock-labs/bolt"
homepage = "https://www.magicblock.gg/"
license = "MIT"
edition = "2021"

[workspace.dependencies]
bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.3" }
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.3" }
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.3"}
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.3" }
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.3" }
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.3" }
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.3" }
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.3" }
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.3" }
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.3" }
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.3" }
world = { path = "programs/world", features = ["cpi"], version = "=0.1.3"}
bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.3"}
bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.3"}
bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.4" }
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.4" }
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.4"}
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.4" }
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.4" }
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.4" }
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.4" }
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.4" }
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.4" }
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.4" }
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.4" }
world = { path = "programs/world", features = ["cpi"], version = "=0.1.4"}
bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.4"}
bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.4"}

## External crates
anchor-lang = { version = "0.29.0", git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909", features = ["init-if-needed"] }
Expand Down
16 changes: 8 additions & 8 deletions cli/npm-package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@magicblock-labs/bolt-cli",
"version": "0.1.3",
"version": "0.1.4",
"description": "Bolt CLI tool",
"homepage": "https://github.com/magicblock-labs/bolt#readme",
"bugs": {
Expand Down Expand Up @@ -29,13 +29,13 @@
"typescript": "^4.9.4"
},
"optionalDependencies": {
"@magicblock-labs/bolt-cli-darwin-x64": "0.1.3",
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.3",
"@magicblock-labs/bolt-cli-linux-x86": "0.1.3",
"@magicblock-labs/bolt-cli-linux-x64": "0.1.3",
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.3",
"@magicblock-labs/bolt-cli-windows-x86": "0.1.3",
"@magicblock-labs/bolt-cli-windows-x64": "0.1.3"
"@magicblock-labs/bolt-cli-darwin-x64": "0.1.4",
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.4",
"@magicblock-labs/bolt-cli-linux-x86": "0.1.4",
"@magicblock-labs/bolt-cli-linux-x64": "0.1.4",
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.4",
"@magicblock-labs/bolt-cli-windows-x86": "0.1.4",
"@magicblock-labs/bolt-cli-windows-x64": "0.1.4"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion cli/npm-package/package.json.tmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@magicblock-labs/${node_pkg}",
"description": "Bolt CLI tool (${node_pkg})",
"version": "0.1.3",
"version": "0.1.4",
"repository": {
"type": "git",
"url": "git+https://github.com/magicblock-labs/bolt.git"
Expand Down
2 changes: 1 addition & 1 deletion clients/bolt-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@magicblock-labs/bolt-sdk",
"version": "0.1.3",
"version": "0.1.4",
"description": "Bolt typescript SDK",
"author": "dev@magicblock.gg",
"license": "MIT",
Expand Down

0 comments on commit 6e10cfb

Please sign in to comment.