-
Notifications
You must be signed in to change notification settings - Fork 0
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
16eea6d
commit 8c4778e
Showing
4 changed files
with
53 additions
and
12 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ members = ["crates/*"] | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Ifiok Jr. <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/ifiokjr/wasm_solana" | ||
|
@@ -105,11 +105,11 @@ zstd = { version = "0.13", default-features = false } | |
|
||
# crates | ||
test_utils = { path = "./crates/test_utils" } | ||
test_utils_solana = { path = "./crates/test_utils_solana", version = "0.1.0" } | ||
wallet_standard = { path = "./crates/wallet_standard", version = "0.1.0" } | ||
wallet_standard_browser = { path = "./crates/wallet_standard_browser", version = "0.1.0" } | ||
wallet_standard_wallets = { path = "./crates/wallet_standard_wallets", version = "0.1.0" } | ||
wasm_client_anchor = { path = "./crates/wasm_client_anchor", version = "0.1.0" } | ||
test_utils_solana = { path = "./crates/test_utils_solana", version = "0.1.1" } | ||
wallet_standard = { path = "./crates/wallet_standard", version = "0.1.1" } | ||
wallet_standard_browser = { path = "./crates/wallet_standard_browser", version = "0.1.1" } | ||
wallet_standard_wallets = { path = "./crates/wallet_standard_wallets", version = "0.1.1" } | ||
wasm_client_anchor = { path = "./crates/wasm_client_anchor", version = "0.1.1" } | ||
wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.1.0" } | ||
|
||
[workspace.metadata.bin] | ||
|
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,14 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.1](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-09-13 | ||
|
||
### <!-- 2 -->🚜 Refactor | ||
|
||
- remove unused imports |
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,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
## [Unreleased] | ||
|
||
## [0.1.1](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-09-13 | ||
|
||
### <!-- 0 -->🎉 Added | ||
|
||
- use `WalletSolana` for signing anchor transactions | ||
- add memory based standard wallet implementation | ||
|
||
### <!-- 3 -->📚 Documentation | ||
|
||
- prepare for initial release | ||
|
||
### <!-- 5 -->🎨 Styling | ||
|
||
- update lints | ||
- lint all files | ||
|
||
### <!-- 6 -->🧪 Testing | ||
|
||
- remove `namespace` from tests | ||
- basic tests for `MemoryWallet` now succeed | ||
- passing tests for `wasm_client_solana` | ||
- write first tests | ||
|
||
### <!-- 7 -->⚙️ Miscellaneous Tasks | ||
|
||
- rename `dev_dependencies` to `dev-dependencies` | ||
|
||
## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/[email protected]) - 2024-09-12 | ||
|
||
### <!-- 0 -->🎉 Added | ||
|