diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e2d2b9..57652e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ +## [0.1.1] - 2024-03-09 + +### ✨️ Features + - Dynamic types resolver (#24) + ## [0.1.0] - 2024-02-28 ### 📚 Documentation - Improve repository structure (#21) -### 👷 CI/CD - ## [0.0.2] - 2024-02-24 ### ✨️ Features diff --git a/Cargo.lock b/Cargo.lock index aa8905f..1b3e2b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -910,7 +910,7 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" [[package]] name = "bolt-attribute-bolt-component" -version = "0.1.0" +version = "0.1.1" dependencies = [ "bolt-utils", "proc-macro2", @@ -920,7 +920,7 @@ dependencies = [ [[package]] name = "bolt-attribute-bolt-component-deserialize" -version = "0.1.0" +version = "0.1.1" dependencies = [ "bolt-utils", "proc-macro2", @@ -930,7 +930,7 @@ dependencies = [ [[package]] name = "bolt-attribute-bolt-component-id" -version = "0.1.0" +version = "0.1.1" dependencies = [ "proc-macro2", "quote", @@ -939,7 +939,7 @@ dependencies = [ [[package]] name = "bolt-attribute-bolt-program" -version = "0.1.0" +version = "0.1.1" dependencies = [ "proc-macro2", "quote", @@ -948,7 +948,7 @@ dependencies = [ [[package]] name = "bolt-attribute-bolt-system" -version = "0.1.0" +version = "0.1.1" dependencies = [ "proc-macro2", "quote", @@ -957,7 +957,7 @@ dependencies = [ [[package]] name = "bolt-attribute-bolt-system-input" -version = "0.1.0" +version = "0.1.1" dependencies = [ "proc-macro2", "quote", @@ -966,7 +966,7 @@ dependencies = [ [[package]] name = "bolt-cli" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anchor-cli", "anchor-client", @@ -980,7 +980,7 @@ dependencies = [ [[package]] name = "bolt-component" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anchor-lang 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", "bolt-system", @@ -992,7 +992,7 @@ version = "0.0.1" [[package]] name = "bolt-helpers-system-template" -version = "0.1.0" +version = "0.1.1" dependencies = [ "proc-macro2", "quote", @@ -1001,7 +1001,7 @@ dependencies = [ [[package]] name = "bolt-helpers-world-apply" -version = "0.1.0" +version = "0.1.1" dependencies = [ "proc-macro2", "quote", @@ -1010,7 +1010,7 @@ dependencies = [ [[package]] name = "bolt-lang" -version = "0.1.0" +version = "0.1.1" dependencies = [ "ahash 0.8.6", "anchor-lang 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1028,7 +1028,7 @@ dependencies = [ [[package]] name = "bolt-system" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anchor-lang 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", "bolt-helpers-system-template", @@ -1044,7 +1044,7 @@ dependencies = [ [[package]] name = "bolt-utils" -version = "0.1.0" +version = "0.1.1" dependencies = [ "proc-macro2", "quote", @@ -3153,7 +3153,7 @@ dependencies = [ [[package]] name = "position" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anchor-lang 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", "bolt-lang", @@ -5034,7 +5034,7 @@ dependencies = [ [[package]] name = "system-apply-velocity" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anchor-lang 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", "bolt-lang", @@ -5065,7 +5065,7 @@ dependencies = [ [[package]] name = "system-fly" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anchor-lang 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", "bolt-lang", @@ -5074,7 +5074,7 @@ dependencies = [ [[package]] name = "system-simple-movement" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anchor-lang 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", "bolt-lang", @@ -5570,7 +5570,7 @@ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" [[package]] name = "velocity" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anchor-lang 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", "bolt-lang", @@ -5969,7 +5969,7 @@ dependencies = [ [[package]] name = "world" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anchor-lang 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", "bolt-component", diff --git a/Cargo.toml b/Cargo.toml index 76252fd..7977e79 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ ] [workspace.package] -version = "0.1.0" +version = "0.1.1" authors = ["Magicblock Labs "] repository = "https://github.com/magicblock-labs/bolt" homepage = "https://www.magicblock.gg/" @@ -15,18 +15,18 @@ license = "MIT" edition = "2021" [workspace.dependencies] -bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.0" } -bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.0" } -bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.0"} -bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.0" } -bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.0" } -bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.0" } -bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.0" } -bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.0" } -bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.0" } -world = { path = "programs/world", features = ["cpi"], version = "=0.1.0"} -bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.0"} -bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.0"} +bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.1" } +bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.1" } +bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.1"} +bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.1" } +bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.1" } +bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.1" } +bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.1" } +bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.1" } +bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.1" } +world = { path = "programs/world", features = ["cpi"], version = "=0.1.1"} +bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.1"} +bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.1"} ## External crates anchor-lang = "0.29.0" diff --git a/cli/npm-package/package.json b/cli/npm-package/package.json index 695e091..22f6aae 100644 --- a/cli/npm-package/package.json +++ b/cli/npm-package/package.json @@ -1,6 +1,6 @@ { "name": "@magicblock-labs/bolt-cli", - "version": "0.1.0", + "version": "0.1.1", "description": "Bolt CLI tool", "homepage": "https://github.com/magicblock-labs/bolt#readme", "bugs": { @@ -29,13 +29,13 @@ "typescript": "^4.9.4" }, "optionalDependencies": { - "@magicblock-labs/bolt-cli-darwin-x64": "0.1.0", - "@magicblock-labs/bolt-cli-darwin-arm64": "0.1.0", - "@magicblock-labs/bolt-cli-linux-x86": "0.1.0", - "@magicblock-labs/bolt-cli-linux-x64": "0.1.0", - "@magicblock-labs/bolt-cli-linux-arm64": "0.1.0", - "@magicblock-labs/bolt-cli-windows-x86": "0.1.0", - "@magicblock-labs/bolt-cli-windows-x64": "0.1.0" + "@magicblock-labs/bolt-cli-darwin-x64": "0.1.1", + "@magicblock-labs/bolt-cli-darwin-arm64": "0.1.1", + "@magicblock-labs/bolt-cli-linux-x86": "0.1.1", + "@magicblock-labs/bolt-cli-linux-x64": "0.1.1", + "@magicblock-labs/bolt-cli-linux-arm64": "0.1.1", + "@magicblock-labs/bolt-cli-windows-x86": "0.1.1", + "@magicblock-labs/bolt-cli-windows-x64": "0.1.1" }, "publishConfig": { "access": "public" diff --git a/cli/npm-package/package.json.tmpl b/cli/npm-package/package.json.tmpl index 5b4a815..2521e8b 100644 --- a/cli/npm-package/package.json.tmpl +++ b/cli/npm-package/package.json.tmpl @@ -1,7 +1,7 @@ { "name": "@magicblock-labs/${node_pkg}", "description": "Bolt CLI tool (${node_pkg})", - "version": "0.1.0", + "version": "0.1.1", "repository": { "type": "git", "url": "git+https://github.com/magicblock-labs/bolt.git" diff --git a/clients/bolt-sdk/package.json b/clients/bolt-sdk/package.json index 45f0157..2ea4cf4 100644 --- a/clients/bolt-sdk/package.json +++ b/clients/bolt-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@magicblock-labs/bolt-sdk", - "version": "0.1.0", + "version": "0.1.1", "description": "Bolt typescript SDK", "author": "dev@magicblock.gg", "license": "MIT",