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: v0.1.12 #116

Merged
merged 2 commits into from
Dec 6, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:
- name: Publish the NPM package
shell: bash
run: |
cd cli/npm-package
cd crates/bolt-cli/npm-package
npm install
npm run build
cd lib
Expand Down
92 changes: 46 additions & 46 deletions Cargo.lock

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

32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,29 @@ members = [
]

[workspace.package]
version = "0.1.11"
version = "0.1.12"
authors = ["Magicblock Labs <[email protected]>"]
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.11" }
bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.1.11" }
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.11" }
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.11"}
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.11" }
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.11" }
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.11" }
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.11" }
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.11" }
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.11" }
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.11" }
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.11" }
world = { path = "crates/programs/world", features = ["cpi"], version = "=0.1.11"}
bolt-system = { path = "crates/programs/bolt-system", features = ["cpi"], version = "=0.1.11"}
bolt-component = { path = "crates/programs/bolt-component", features = ["cpi"], version = "=0.1.11"}
bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.12" }
bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.1.12" }
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.12" }
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.12"}
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.12" }
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.12" }
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.12" }
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.12" }
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.12" }
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.12" }
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.12" }
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.12" }
world = { path = "crates/programs/world", features = ["cpi"], version = "=0.1.12"}
bolt-system = { path = "crates/programs/bolt-system", features = ["cpi"], version = "=0.1.12"}
bolt-component = { path = "crates/programs/bolt-component", features = ["cpi"], version = "=0.1.12"}

## External crates
anchor-lang = { version = "=0.30.1", features = ["init-if-needed"] }
Expand Down
8 changes: 8 additions & 0 deletions cliff.toml → Cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ commit_parsers = [
{ message = "^:art:", group = "<!-- 5 -->🎨 Styling" },
{ message = "^:construction_worker:", group = "<!-- 6 -->👷 CI/CD" },
{ message = "^:recycle:", group = "<!-- 7 -->♻️ Refactor" },
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
{ message = "^docs", group = "<!-- 3 -->📚 Documentation" },
{ message = "^perf", group = "<!-- 4 -->⚡️ Performance" },
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
{ message = "^ci", group = "<!-- 6 -->👷 CI/CD" },
{ message = "^refactor", group = "<!-- 7 -->♻️ Refactor" },
{ message = "^test", group = "<!-- 8 -->🧪 Testing" },
{ message = "^chore", group = "<!-- 9 -->🔧 Maintenance" }
]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false
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.11",
"version": "0.1.12",
"description": "Bolt typescript SDK",
"author": "[email protected]",
"license": "MIT",
Expand Down
16 changes: 8 additions & 8 deletions crates/bolt-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.11",
"version": "0.1.12",
"description": "Bolt CLI tool",
"homepage": "https://github.com/magicblock-labs/bolt#readme",
"bugs": {
Expand All @@ -27,13 +27,13 @@
"prettier": "^3.3.3"
},
"optionalDependencies": {
"@magicblock-labs/bolt-cli-darwin-x64": "0.1.11",
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.11",
"@magicblock-labs/bolt-cli-linux-x86": "0.1.11",
"@magicblock-labs/bolt-cli-linux-x64": "0.1.11",
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.11",
"@magicblock-labs/bolt-cli-windows-x86": "0.1.11",
"@magicblock-labs/bolt-cli-windows-x64": "0.1.11"
"@magicblock-labs/bolt-cli-darwin-x64": "0.1.12",
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.12",
"@magicblock-labs/bolt-cli-linux-x86": "0.1.12",
"@magicblock-labs/bolt-cli-linux-x64": "0.1.12",
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.12",
"@magicblock-labs/bolt-cli-windows-x86": "0.1.12",
"@magicblock-labs/bolt-cli-windows-x64": "0.1.12"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion crates/bolt-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.11",
"version": "0.1.12",
"repository": {
"type": "git",
"url": "git+https://github.com/magicblock-labs/bolt.git"
Expand Down
Loading
Loading