diff --git a/CHANGELOG.md b/CHANGELOG.md index b0f52942..552776f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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). +## [2.8.0] - 2025-11-17 + +### Changed + +- Bump `ic-cdk` to v0.19.0 ([#518](https://github.com/dfinity/evm-rpc-canister/pull/518)) +- Bump Rust to v1.91.0 and upgrade dependencies ([#529](https://github.com/dfinity/evm-rpc-canister/pull/529)) + +[2.8.0]: https://github.com/dfinity/evm-rpc-canister/compare/evm_rpc-v2.7.1...evm_rpc-v2.8.0 + ## [2.7.1] - 2025-11-17 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 9eacdd0e..8084febf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2012,7 +2012,7 @@ dependencies = [ [[package]] name = "evm_rpc_client" -version = "0.2.0" +version = "0.3.0" dependencies = [ "alloy", "alloy-primitives", @@ -2029,7 +2029,7 @@ dependencies = [ [[package]] name = "evm_rpc_types" -version = "3.0.0" +version = "3.1.0" dependencies = [ "alloy-consensus", "alloy-primitives", diff --git a/e2e/rust/Cargo.toml b/e2e/rust/Cargo.toml index 1ffe7bf5..05849161 100644 --- a/e2e/rust/Cargo.toml +++ b/e2e/rust/Cargo.toml @@ -14,4 +14,4 @@ serde = { workspace = true } serde_bytes = { workspace = true } [build-dependencies] -ic-cdk-bindgen = { workspace = true } \ No newline at end of file +ic-cdk-bindgen = { workspace = true } diff --git a/evm_rpc_client/CHANGELOG.md b/evm_rpc_client/CHANGELOG.md index 7931317e..5e5a11bf 100644 --- a/evm_rpc_client/CHANGELOG.md +++ b/evm_rpc_client/CHANGELOG.md @@ -5,6 +5,15 @@ 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). +## [0.3.0] - 2025-11-24 + +### Changed + +- Bump `ic-cdk` to v0.19.0 ([#518](https://github.com/dfinity/evm-rpc-canister/pull/518)) +- Bump Rust to v1.91.0 and upgrade dependencies ([#529](https://github.com/dfinity/evm-rpc-canister/pull/529)) + +[0.3.0]: https://github.com/dfinity/evm-rpc-canister/compare/evm_rpc_client-v0.2.0..evm_rpc_client-v0.3.0 + ## [0.2.0] - 2025-11-03 ### Added diff --git a/evm_rpc_client/Cargo.toml b/evm_rpc_client/Cargo.toml index cc0971ee..7c74f076 100644 --- a/evm_rpc_client/Cargo.toml +++ b/evm_rpc_client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm_rpc_client" -version = "0.2.0" +version = "0.3.0" description = "Rust client for interacting with the EVM RPC canister" license = "Apache-2.0" readme = "README.md" @@ -18,7 +18,7 @@ alloy-primitives = { workspace = true, optional = true } alloy-rpc-types = { workspace = true, optional = true } async-trait = { workspace = true } candid = { workspace = true } -evm_rpc_types = { version = "3.0.0", path = "../evm_rpc_types" } +evm_rpc_types = { version = "3.1.0", path = "../evm_rpc_types" } ic-canister-runtime = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } diff --git a/evm_rpc_types/CHANGELOG.md b/evm_rpc_types/CHANGELOG.md index 66637d11..56c56dfc 100644 --- a/evm_rpc_types/CHANGELOG.md +++ b/evm_rpc_types/CHANGELOG.md @@ -5,6 +5,15 @@ 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). +## [3.1.0] - 2025-11-24 + +### Changed + +- Bump `ic-cdk` to v0.19.0 ([#518](https://github.com/dfinity/evm-rpc-canister/pull/518)) +- Bump Rust to v1.91.0 and upgrade dependencies ([#529](https://github.com/dfinity/evm-rpc-canister/pull/529)) + +[3.1.0]: https://github.com/dfinity/evm-rpc-canister/compare/evm_rpc_types-v3.0.0..evm_rpc_types-v3.1.0 + ## [3.0.0] - 2025-10-20 ### Added diff --git a/evm_rpc_types/Cargo.toml b/evm_rpc_types/Cargo.toml index 6034c52b..0ccdb1ef 100644 --- a/evm_rpc_types/Cargo.toml +++ b/evm_rpc_types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm_rpc_types" -version = "3.0.0" +version = "3.1.0" description = "Candid types for interacting with the EVM RPC canister" license = "Apache-2.0" readme = "README.md"