Skip to content

Commit a121f77

Browse files
committed
🔖 Release 0.1.7
1 parent 391cff5 commit a121f77

File tree

6 files changed

+56
-48
lines changed

6 files changed

+56
-48
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11

2+
## [0.1.7] - 2024-06-21
3+
4+
### ✨️ Features
5+
- Add manual commit to the typescript sdk (#59)
6+
- Upgrade to Anchor 0.30.1 (#62)
7+
8+
### 👷 CI/CD
9+
210
## [0.1.5] - 2024-04-23
311

412
### 📚 Documentation

Cargo.lock

+22-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+16-16
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,29 @@ members = [
77
]
88

99
[workspace.package]
10-
version = "0.1.6"
10+
version = "0.1.7"
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.6" }
19-
bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.1.6" }
20-
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.6" }
21-
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.6"}
22-
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.6" }
23-
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.6" }
24-
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.6" }
25-
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.6" }
26-
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.6" }
27-
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.6" }
28-
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.6" }
29-
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.6" }
30-
world = { path = "programs/world", features = ["cpi"], version = "=0.1.6"}
31-
bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.6"}
32-
bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.6"}
18+
bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.7" }
19+
bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.1.7" }
20+
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.7" }
21+
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.7"}
22+
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.7" }
23+
bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.7" }
24+
bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.7" }
25+
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.7" }
26+
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.7" }
27+
bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.7" }
28+
bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.7" }
29+
bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.7" }
30+
world = { path = "programs/world", features = ["cpi"], version = "=0.1.7"}
31+
bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.7"}
32+
bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.7"}
3333

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

cli/npm-package/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@magicblock-labs/bolt-cli",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
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.6",
33-
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.6",
34-
"@magicblock-labs/bolt-cli-linux-x86": "0.1.6",
35-
"@magicblock-labs/bolt-cli-linux-x64": "0.1.6",
36-
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.6",
37-
"@magicblock-labs/bolt-cli-windows-x86": "0.1.6",
38-
"@magicblock-labs/bolt-cli-windows-x64": "0.1.6"
32+
"@magicblock-labs/bolt-cli-darwin-x64": "0.1.7",
33+
"@magicblock-labs/bolt-cli-darwin-arm64": "0.1.7",
34+
"@magicblock-labs/bolt-cli-linux-x86": "0.1.7",
35+
"@magicblock-labs/bolt-cli-linux-x64": "0.1.7",
36+
"@magicblock-labs/bolt-cli-linux-arm64": "0.1.7",
37+
"@magicblock-labs/bolt-cli-windows-x86": "0.1.7",
38+
"@magicblock-labs/bolt-cli-windows-x64": "0.1.7"
3939
},
4040
"publishConfig": {
4141
"access": "public"

cli/npm-package/package.json.tmpl

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

clients/bolt-sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@magicblock-labs/bolt-sdk",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"description": "Bolt typescript SDK",
55
"author": "[email protected]",
66
"license": "MIT",

0 commit comments

Comments
 (0)