Skip to content

Commit c22a97c

Browse files
authored
release: v0.1.11 (#112)
1 parent acb50b4 commit c22a97c

File tree

9 files changed

+92
-76
lines changed

9 files changed

+92
-76
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
- name: Check versions are aligned
158158
run: |
159159
# Fails if versions are not aligned
160-
cargo install git-cliff
160+
cargo install git-cliff@2.6.1 --locked
161161
./version-align.sh --check
162162
163163
- name: run build
@@ -205,6 +205,9 @@ jobs:
205205
cargo publish $DRY_RUN_FLAG --manifest-path=programs/bolt-component/Cargo.toml --token $CRATES_TOKEN $NO_VERIFY_FLAG
206206
cargo publish $DRY_RUN_FLAG --manifest-path=programs/world/Cargo.toml --token $CRATES_TOKEN $NO_VERIFY_FLAG
207207
cargo publish $DRY_RUN_FLAG --manifest-path=crates/bolt-lang/Cargo.toml --token $CRATES_TOKEN $NO_VERIFY_FLAG
208+
if [ "${DRY_RUN}" != "true" ]; then
209+
cargo publish --manifest-path=cli/Cargo.toml --token $CRATES_TOKEN
210+
fi
208211
env:
209212
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
210213
DRY_RUN: ${{ env.DRY_RUN }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
- name: Check versions are aligned
158158
run: |
159159
# Fails if versions are not aligned
160-
cargo install git-cliff
160+
cargo install git-cliff@2.6.1 --locked
161161
./version-align.sh --check
162162
163163
- name: run build

.github/workflows/publish-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
- name: Check versions are aligned
110110
run: |
111111
# Fails if versions are not aligned
112-
cargo install git-cliff
112+
cargo install git-cliff@2.6.1 --locked
113113
./version-align.sh --check
114114
115115
- name: Build the NPM package

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11

2-
## [0.1.10] - 2024-10-04
2+
## [0.1.11] - 2024-12-04
3+
4+
5+
### 🐛 Bug Fixes
6+
7+
### 📚 Documentation
8+
9+
### 👷 CI/CD
10+
- Reorganizing templates, using bolt.workspace an… (#95)
11+
12+
### ♻️ Refactor
13+
- Fixing test template, broken after code refactor (#93)
14+
15+
## [0.1.10] - 2024-10-05
316

417
### 👷 CI/CD
518

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
@@ -8,29 +8,29 @@ members = [
88
]
99

1010
[workspace.package]
11-
version = "0.1.10"
11+
version = "0.1.11"
1212
authors = ["Magicblock Labs <[email protected]>"]
1313
repository = "https://github.com/magicblock-labs/bolt"
1414
homepage = "https://www.magicblock.gg/"
1515
license = "MIT"
1616
edition = "2021"
1717

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

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

0 commit comments

Comments
 (0)