Skip to content
Closed
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
18 changes: 9 additions & 9 deletions Cargo.lock

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

20 changes: 20 additions & 0 deletions libs/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2025-07-07

### Added

- Add build requirements to READMEs and rustdoc ([#169](https://github.com/dfinity/sol-rpc-canister/pull/169))
- Add `Cargo.toml` linting to CI pipeline ([#155](https://github.com/dfinity/sol-rpc-canister/pull/155))

### Changed

- Revert `sol_rpc_client` bump ([#178](https://github.com/dfinity/sol-rpc-canister/pull/178))
- Migrate dependencies to `solana-sdk` repository ([#55](https://github.com/dfinity/sol-rpc-canister/pull/55))
- Bump `sol_rpc_client` to `v1.0.1` ([#164](https://github.com/dfinity/sol-rpc-canister/pull/164))
- Enable `ed25519` feature in docs ([#162](https://github.com/dfinity/sol-rpc-canister/pull/162))

### Fixed

- Use correct fee for t-sig with local development key ([#160](https://github.com/dfinity/sol-rpc-canister/pull/160))

[1.0.1]: https://github.com/dfinity/sol-rpc-canister/compare/1.0.0..1.0.1

## [1.0.0] - 2025-06-13

### Added
Expand Down
4 changes: 2 additions & 2 deletions libs/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sol_rpc_client"
version = "1.0.0"
version = "1.0.1"
description = "Client to interact with the SOL RPC canister"
authors.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -30,7 +30,7 @@ ic-cdk = { workspace = true }
ic-ed25519 = { workspace = true, optional = true }
serde = { workspace = true }
serde_json = { workspace = true }
sol_rpc_types = { version = "1.0.0", path = "../types" }
sol_rpc_types = { version = "1.0.1", path = "../types" }
solana-account-decoder-client-types = { workspace = true, features = ["zstd"] }
solana-hash = { workspace = true }
solana-instruction = { workspace = true }
Expand Down
14 changes: 14 additions & 0 deletions libs/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2025-07-07

### Added

- Add build requirements to READMEs and rustdoc ([#169](https://github.com/dfinity/sol-rpc-canister/pull/169))
- Add `Cargo.toml` linting to CI pipeline ([#155](https://github.com/dfinity/sol-rpc-canister/pull/155))

### Changed

- Migrate dependencies to `solana-sdk` repository ([#55](https://github.com/dfinity/sol-rpc-canister/pull/55))
- Improve docs for `InstallArgs` ([#172](https://github.com/dfinity/sol-rpc-canister/pull/172))

[1.0.1]: https://github.com/dfinity/sol-rpc-canister/compare/1.0.0..1.0.1

## [1.0.0] - 2025-06-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion libs/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sol_rpc_types"
version = "1.0.0"
version = "1.0.1"
description = "Candid types used by the SOL RPC canister"
authors.workspace = true
edition.workspace = true
Expand Down