From a58552814bf297beda391b28d4ed56e5c0667c37 Mon Sep 17 00:00:00 2001 From: NathanosDev Date: Mon, 10 Feb 2025 17:58:26 +0100 Subject: [PATCH] chore: release 0.2.0 --- .cz.yaml | 2 +- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.cz.yaml b/.cz.yaml index 50775ef..4b9a521 100644 --- a/.cz.yaml +++ b/.cz.yaml @@ -3,7 +3,7 @@ commitizen: name: cz_conventional_commits tag_format: $version update_changelog_on_bump: true - version: 0.1.0 + version: 0.2.0 version_files: - Cargo.toml - packages/http-canister-client/package.json:version diff --git a/CHANGELOG.md b/CHANGELOG.md index f3bac99..3c031d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.2.0 (2025-02-10) + +### Feat + +- **ic-http-gateway**: propagate http error (#33) + +### Fix + +- **ic-http-gateway**: include range header when running response verification for range requests (#40) + ## 0.1.0 (2024-12-20) ### Feat diff --git a/Cargo.lock b/Cargo.lock index eb1c26d..5cf4231 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1157,7 +1157,7 @@ dependencies = [ [[package]] name = "http_gateway_rust" -version = "0.1.0" +version = "0.2.0" dependencies = [ "http-body-util", "hyper", @@ -1471,7 +1471,7 @@ dependencies = [ [[package]] name = "ic-http-gateway" -version = "0.1.0" +version = "0.2.0" dependencies = [ "assert_matches", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 2a5d1c4..4032435 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ default-members = ["packages/ic-http-gateway"] [workspace.package] -version = "0.1.0" +version = "0.2.0" authors = ["DFINITY Stiftung"] edition = "2021" repository = "https://github.com/dfinity/http-gateway" @@ -55,4 +55,4 @@ ic-certification = "3" ic-http-certification = "3" ic-asset-certification = "3" -ic-http-gateway = { path = "./packages/ic-http-gateway", version = "0.1.0" } +ic-http-gateway = { path = "./packages/ic-http-gateway", version = "0.2.0" }