From 35ad7266fc9e54efc083ab5995a666e27aa0ab30 Mon Sep 17 00:00:00 2001 From: gregorydemay Date: Tue, 8 Jul 2025 12:07:31 +0200 Subject: [PATCH 1/2] XC-372: changelog --- canhttp/CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/canhttp/CHANGELOG.md b/canhttp/CHANGELOG.md index 2c4afb07..9f6ca501 100644 --- a/canhttp/CHANGELOG.md +++ b/canhttp/CHANGELOG.md @@ -5,6 +5,16 @@ 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.2.0] - 2025-07-08 + +### Added +- Data structures `TimedSizedVec` and `TimedSizedMap` to store a limited number of expiring elements ([#434](https://github.com/dfinity/evm-rpc-canister/pull/434)) +- Method to list `Ok` results in a `MultiResults` ([#435](https://github.com/dfinity/evm-rpc-canister/pull/435)) + +### Changed + +- **Breaking:** change the `code` field in the `IcError` type to use `ic_error_types::RejectCode` instead of `ic_cdk::api::call::RejectionCode` ([#428](https://github.com/dfinity/evm-rpc-canister/pull/428)) + ## [0.1.0] - 2025-06-04 ### Added From cf7cfafb54bfe7ce039851f988a3737b0e29baaf Mon Sep 17 00:00:00 2001 From: gregorydemay Date: Tue, 8 Jul 2025 12:07:40 +0200 Subject: [PATCH 2/2] XC-372: bump version --- canhttp/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/canhttp/Cargo.toml b/canhttp/Cargo.toml index 3a7d283b..c4271233 100644 --- a/canhttp/Cargo.toml +++ b/canhttp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "canhttp" -version = "0.1.1" +version = "0.2.0" description = "Rust library to issue HTTPs outcalls from a canister on the Internet Computer" license = "Apache-2.0" readme = "README.md"