Skip to content

Commit 3ca8782

Browse files
authored
release: v0.1.12 (#116)
1 parent 9a22d5c commit 3ca8782

File tree

9 files changed

+135
-80
lines changed

9 files changed

+135
-80
lines changed

.github/workflows/publish-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
- name: Publish the NPM package
195195
shell: bash
196196
run: |
197-
cd cli/npm-package
197+
cd crates/bolt-cli/npm-package
198198
npm install
199199
npm run build
200200
cd lib

Cargo.lock

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

Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,29 @@ members = [
1212
]
1313

1414
[workspace.package]
15-
version = "0.1.11"
15+
version = "0.1.12"
1616
authors = ["Magicblock Labs <[email protected]>"]
1717
repository = "https://github.com/magicblock-labs/bolt"
1818
homepage = "https://www.magicblock.gg/"
1919
license = "MIT"
2020
edition = "2021"
2121

2222
[workspace.dependencies]
23-
bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.11" }
24-
bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.1.11" }
25-
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.11" }
26-
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.11"}
27-
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.11" }
28-
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.11" }
29-
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.11" }
30-
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.11" }
31-
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.11" }
32-
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.11" }
33-
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.11" }
34-
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.11" }
35-
world = { path = "crates/programs/world", features = ["cpi"], version = "=0.1.11"}
36-
bolt-system = { path = "crates/programs/bolt-system", features = ["cpi"], version = "=0.1.11"}
37-
bolt-component = { path = "crates/programs/bolt-component", features = ["cpi"], version = "=0.1.11"}
23+
bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.12" }
24+
bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.1.12" }
25+
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.12" }
26+
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.12"}
27+
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.12" }
28+
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.12" }
29+
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.12" }
30+
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.12" }
31+
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.12" }
32+
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.12" }
33+
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.12" }
34+
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.12" }
35+
world = { path = "crates/programs/world", features = ["cpi"], version = "=0.1.12"}
36+
bolt-system = { path = "crates/programs/bolt-system", features = ["cpi"], version = "=0.1.12"}
37+
bolt-component = { path = "crates/programs/bolt-component", features = ["cpi"], version = "=0.1.12"}
3838

3939
## External crates
4040
anchor-lang = { version = "=0.30.1", features = ["init-if-needed"] }

cliff.toml renamed to Cliff.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,14 @@ commit_parsers = [
7878
{ message = "^:art:", group = "<!-- 5 -->🎨 Styling" },
7979
{ message = "^:construction_worker:", group = "<!-- 6 -->👷 CI/CD" },
8080
{ message = "^:recycle:", group = "<!-- 7 -->♻️ Refactor" },
81+
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
82+
{ message = "^docs", group = "<!-- 3 -->📚 Documentation" },
83+
{ message = "^perf", group = "<!-- 4 -->⚡️ Performance" },
84+
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
85+
{ message = "^ci", group = "<!-- 6 -->👷 CI/CD" },
86+
{ message = "^refactor", group = "<!-- 7 -->♻️ Refactor" },
87+
{ message = "^test", group = "<!-- 8 -->🧪 Testing" },
88+
{ message = "^chore", group = "<!-- 9 -->🔧 Maintenance" }
8189
]
8290
# protect breaking changes from being skipped due to matching a skipping commit_parser
8391
protect_breaking_commits = false

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.11",
3+
"version": "0.1.12",
44
"description": "Bolt typescript SDK",
55
"author": "[email protected]",
66
"license": "MIT",

crates/bolt-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.11",
3+
"version": "0.1.12",
44
"description": "Bolt CLI tool",
55
"homepage": "https://github.com/magicblock-labs/bolt#readme",
66
"bugs": {
@@ -27,13 +27,13 @@
2727
"prettier": "^3.3.3"
2828
},
2929
"optionalDependencies": {
30-
"@magicblock-labs/bolt-cli-darwin-x64": "0.1.11",
31-
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.11",
32-
"@magicblock-labs/bolt-cli-linux-x86": "0.1.11",
33-
"@magicblock-labs/bolt-cli-linux-x64": "0.1.11",
34-
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.11",
35-
"@magicblock-labs/bolt-cli-windows-x86": "0.1.11",
36-
"@magicblock-labs/bolt-cli-windows-x64": "0.1.11"
30+
"@magicblock-labs/bolt-cli-darwin-x64": "0.1.12",
31+
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.12",
32+
"@magicblock-labs/bolt-cli-linux-x86": "0.1.12",
33+
"@magicblock-labs/bolt-cli-linux-x64": "0.1.12",
34+
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.12",
35+
"@magicblock-labs/bolt-cli-windows-x86": "0.1.12",
36+
"@magicblock-labs/bolt-cli-windows-x64": "0.1.12"
3737
},
3838
"publishConfig": {
3939
"access": "public"

crates/bolt-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.11",
4+
"version": "0.1.12",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/magicblock-labs/bolt.git"

0 commit comments

Comments
 (0)