Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v0.1.1 #4

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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]
Expand Down
19 changes: 19 additions & 0 deletions crates/wallet_standard/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 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

### <!-- 3 -->📚 Documentation

- add `wallet-standard` github repo link
- update crate readme description
7 changes: 7 additions & 0 deletions crates/wallet_standard_browser/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ 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

### <!-- 3 -->📚 Documentation

- add `wallet-standard` github repo link
- update crate readme description

## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/[email protected]) - 2024-09-12

### <!-- 0 -->🎉 Added
Expand Down
6 changes: 6 additions & 0 deletions crates/wallet_standard_wallets/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ 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

### <!-- 3 -->📚 Documentation

- update crate readme description

## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/[email protected]) - 2024-09-12

### <!-- 0 -->🎉 Added
Expand Down
14 changes: 14 additions & 0 deletions crates/wasm_client_anchor/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ 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

- add `wallet_standard` to `external` exports

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

- remove duplication from broken macro

### <!-- 3 -->📚 Documentation

- update crate readme description

## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/[email protected]) - 2024-09-12

### <!-- 0 -->🎉 Added
Expand Down
Loading