Skip to content

Commit bd773e1

Browse files
chore: release (#27)
1 parent a9756be commit bd773e1

File tree

15 files changed

+82
-18
lines changed

15 files changed

+82
-18
lines changed

Cargo.lock

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

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ test_utils = { path = "./crates/test_utils" }
9393

9494
# publishable crates
9595
test_utils_anchor = { path = "./crates/test_utils_anchor", version = "0.1.0" }
96-
test_utils_solana = { path = "./crates/test_utils_solana", version = "0.5.5" }
97-
wallet_standard = { path = "./crates/wallet_standard", version = "0.4.0" }
98-
wallet_standard_browser = { path = "./crates/wallet_standard_browser", version = "0.3.1" }
99-
wallet_standard_wallets = { path = "./crates/wallet_standard_wallets", version = "0.1.14" }
100-
wasm_client_anchor = { path = "./crates/wasm_client_anchor", version = "0.7.0" }
101-
wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.6.1" }
96+
test_utils_solana = { path = "./crates/test_utils_solana", version = "0.6.0" }
97+
wallet_standard = { path = "./crates/wallet_standard", version = "0.4.1" }
98+
wallet_standard_browser = { path = "./crates/wallet_standard_browser", version = "0.4.0" }
99+
wallet_standard_wallets = { path = "./crates/wallet_standard_wallets", version = "0.1.15" }
100+
wasm_client_anchor = { path = "./crates/wasm_client_anchor", version = "0.8.0" }
101+
wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.7.0" }
102102

103103
[workspace.metadata.bin]
104104
anchor-cli = { git = "https://github.com/coral-xyz/anchor", rev = "955e7ea", version = "0.30.1", bins = ["anchor"] }

crates/test_utils_anchor/changelog.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/[email protected]) - 2024-12-12
11+
12+
### <!-- 0 -->🎉 Added
13+
14+
- [**breaking**] add test_utils_anchor crate for testing anchor programs in wasm environments; update dependencies and configurations

crates/test_utils_solana/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test_utils_solana"
3-
version = "0.5.5"
3+
version = "0.6.0"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
homepage = { workspace = true }

crates/test_utils_solana/changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.0](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-12
11+
12+
### <!-- 0 -->🎉 Added
13+
14+
- [**breaking**] add test_utils_anchor crate for testing anchor programs in wasm environments; update dependencies and configurations
15+
- [**breaking**] upgrade to solana@v2 (#20)
16+
1017
## [0.5.5](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-11-04
1118

1219
### <!-- 7 -->⚙️ Miscellaneous Tasks

crates/wallet_standard/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wallet_standard"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = { workspace = true }
55
categories = ["wasm", "web-programming"]
66
edition = { workspace = true }

crates/wallet_standard/changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.1](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-12
11+
12+
### <!-- 7 -->⚙️ Miscellaneous Tasks
13+
14+
- update dependencies and configurations across multiple crates
15+
1016
## [0.4.0](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-10-13
1117

1218
### <!-- 0 -->🎉 Added

crates/wallet_standard_browser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wallet_standard_browser"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
authors = { workspace = true }
55
categories = ["wasm", "web-programming"]
66
edition = { workspace = true }

crates/wallet_standard_browser/changelog.md

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.0](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-12
11+
12+
### <!-- 0 -->🎉 Added
13+
14+
- [**breaking**] upgrade to solana@v2 (#20)
15+
16+
### <!-- 7 -->⚙️ Miscellaneous Tasks
17+
18+
- update dependencies and configurations across multiple crates
19+
1020
## [0.3.1](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-10-13
1121

1222
### <!-- 1 -->🐛 Bug Fixes

crates/wallet_standard_wallets/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wallet_standard_wallets"
3-
version = "0.1.14"
3+
version = "0.1.15"
44
authors = { workspace = true }
55
categories = ["wasm"]
66
edition = { workspace = true }

crates/wallet_standard_wallets/changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.15](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-12
11+
12+
### <!-- 7 -->⚙️ Miscellaneous Tasks
13+
14+
- update dependencies and configurations across multiple crates
15+
1016
## [0.1.14](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-11-04
1117

1218
### <!-- 7 -->⚙️ Miscellaneous Tasks

crates/wasm_client_anchor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm_client_anchor"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = { workspace = true }
55
categories = ["wasm", "web-programming"]
66
edition = { workspace = true }

crates/wasm_client_anchor/changelog.md

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.0](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-12
11+
12+
### <!-- 0 -->🎉 Added
13+
14+
- [**breaking**] upgrade to solana@v2 (#20)
15+
16+
### <!-- 7 -->⚙️ Miscellaneous Tasks
17+
18+
- update dependencies and configurations across multiple crates
19+
1020
## [0.7.0](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-11-04
1121

1222
### <!-- 0 -->🎉 Added

crates/wasm_client_solana/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm_client_solana"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = { workspace = true }
55
categories = ["wasm", "web-programming"]
66
edition = { workspace = true }

crates/wasm_client_solana/changelog.md

+11
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.0](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-12
11+
12+
### <!-- 0 -->🎉 Added
13+
14+
- [**breaking**] add test_utils_anchor crate for testing anchor programs in wasm environments; update dependencies and configurations
15+
- [**breaking**] upgrade to solana@v2 (#20)
16+
17+
### <!-- 7 -->⚙️ Miscellaneous Tasks
18+
19+
- update dependencies and configurations across multiple crates
20+
1021
## [0.6.1](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-11-04
1122

1223
### <!-- 7 -->⚙️ Miscellaneous Tasks

0 commit comments

Comments
 (0)