-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
006b7f3
commit f5a7909
Showing
7 changed files
with
65 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
## [0.0.2] - 2024-02-25 | ||
|
||
### ✨️ Features | ||
- Feat/consistent versioning (#18) | ||
- Draft workflow for building & publishing packages (#16) | ||
|
||
### 👷 CI/CD | ||
|
||
## [0.0.1] - 2024-02-21 | ||
|
||
### ✨️ Features | ||
- Feature: Add configurable component authority & Simplify the Components/System API (#14) | ||
- Feat/default component (#13) | ||
- Add a working ecs example on project init (#12) | ||
- Add strings to the template (#2) | ||
- Bolt Typescript SDK (#1) | ||
|
||
|
||
### 🐛 Bug Fixes | ||
- Fix world Pda derivation (#10) | ||
|
||
### 📚 Documentation | ||
|
||
### ♻️ Refactor | ||
- Refactor workspace and project dependencies (#15) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,22 +7,22 @@ members = [ | |
] | ||
|
||
[workspace.package] | ||
version = "0.0.1" | ||
version = "0.0.2" | ||
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.0.1" } | ||
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.0.1" } | ||
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.0.1"} | ||
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.0.1" } | ||
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.0.1" } | ||
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.0.1" } | ||
world = { path = "programs/world", features = ["cpi"], version = "=0.0.1"} | ||
bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.0.1"} | ||
bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.0.2" } | ||
bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.0.2" } | ||
bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.0.2"} | ||
bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.0.2" } | ||
bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.0.2" } | ||
bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.0.2" } | ||
world = { path = "programs/world", features = ["cpi"], version = "=0.0.2"} | ||
bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.0.2"} | ||
|
||
## External crates | ||
anchor-lang = "0.29.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@magicblock-labs/bolt-sdk", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Bolt typescript SDK", | ||
"author": "[email protected]", | ||
"license": "MIT", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters