From 39d22d298a759dd2861e5ce10a2084b7a55f78fe Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Wed, 27 Sep 2023 10:39:53 +0200 Subject: [PATCH] Release 0.3.1: Improve error messages on web --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- ehttp/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b5c73e..6a63f4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to the `ehttp` crate will be documented in this file. ## Unreleased +## 0.3.1 - 2023-09-27 +* Improve opaque network error message on web ([#33](https://github.com/emilk/ehttp/pull/33)). + ## 0.3.0 - 2023-06-15 * Add `ehttp::streaming`, for streaming HTTP requests ([#28](https://github.com/emilk/ehttp/pull/28)). * Add cross-platform `fetch_async` ([#25](https://github.com/emilk/ehttp/pull/25)). diff --git a/Cargo.lock b/Cargo.lock index 0deb5e0..8a03fc0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -763,7 +763,7 @@ dependencies = [ [[package]] name = "ehttp" -version = "0.3.0" +version = "0.3.1" dependencies = [ "async-channel", "document-features", diff --git a/ehttp/Cargo.toml b/ehttp/Cargo.toml index 2c6e688..977489c 100644 --- a/ehttp/Cargo.toml +++ b/ehttp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ehttp" -version = "0.3.0" +version = "0.3.1" authors = ["Emil Ernerfeldt "] description = "Minimal HTTP client for both native and WASM" edition = "2018"