diff --git a/Cargo.lock b/Cargo.lock index 0a636099..722122b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -749,9 +749,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.28" +version = "1.2.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ad45f4f74e4e20eaa392913b7b33a7091c87e59628f4dd27888205ad888843c" +checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362" dependencies = [ "jobserver", "libc", @@ -3994,9 +3994,9 @@ dependencies = [ [[package]] name = "schemars" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1375ba8ef45a6f15d83fa8748f1079428295d403d6ea991d09ab100155fbc06d" +checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" dependencies = [ "dyn-clone", "ref-cast", @@ -4196,7 +4196,7 @@ dependencies = [ "indexmap 1.9.3", "indexmap 2.10.0", "schemars 0.9.0", - "schemars 1.0.3", + "schemars 1.0.4", "serde", "serde_derive", "serde_json", @@ -4394,7 +4394,7 @@ dependencies = [ [[package]] name = "sol_rpc_client" -version = "1.0.0" +version = "1.0.1" dependencies = [ "assert_matches", "async-trait", @@ -4499,7 +4499,7 @@ dependencies = [ [[package]] name = "sol_rpc_types" -version = "1.0.0" +version = "1.0.1" dependencies = [ "base64 0.22.1", "bincode", @@ -6544,9 +6544,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.46.0" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1140bb80481756a8cbe10541f37433b459c5aa1e727b4c020fbfebdc25bf3ec4" +checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" dependencies = [ "backtrace", "bytes", diff --git a/libs/client/CHANGELOG.md b/libs/client/CHANGELOG.md index e225d5b3..2ac943e7 100644 --- a/libs/client/CHANGELOG.md +++ b/libs/client/CHANGELOG.md @@ -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 diff --git a/libs/client/Cargo.toml b/libs/client/Cargo.toml index 65f27efc..e99f603f 100644 --- a/libs/client/Cargo.toml +++ b/libs/client/Cargo.toml @@ -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 @@ -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 } diff --git a/libs/types/CHANGELOG.md b/libs/types/CHANGELOG.md index 7db20371..eecc3946 100644 --- a/libs/types/CHANGELOG.md +++ b/libs/types/CHANGELOG.md @@ -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 diff --git a/libs/types/Cargo.toml b/libs/types/Cargo.toml index fcdda361..fd35edb0 100644 --- a/libs/types/Cargo.toml +++ b/libs/types/Cargo.toml @@ -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