From a58796f2f0aea75e09b2b309222f128d7346d0b1 Mon Sep 17 00:00:00 2001 From: "ForgeJo Action. See: https://git.kemitix.net/kemitix/rust" Date: Wed, 20 Nov 2024 22:32:47 +0000 Subject: [PATCH] chore: release v3.0.0 Signed-off-by: ForgeJo Action. See: https://git.kemitix.net/kemitix/rust --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 729683c..07e2ca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.0](https://git.kemitix.net/kemitix/kxio/compare/v2.1.1...v3.0.0) - 2024-11-20 + +### Added + +- *(net)* [**breaking**] net api: net.{get,post,etc..}(url) alternative to net.send(request) +- *(fs)* add TempFileSystem::as_real() +- *(net)* [**breaking**] new api: .on().respond().{status,header{s},body}(_)?, replacing respond(response) +- *(net)* [**breaking**] new api: .on().{get,post, etc}(url), replacing .on(method).get(url) +- re-export http::HeaderMap +- Add Debug, Clone, Default, PartialEq, Eq, Send, Sync to as many or our types as possible. + +### Fixed + +- *(net)* [**breaking**] Remove MatchOn + ## [2.1.1](https://git.kemitix.net/kemitix/kxio/compare/v2.1.0...v2.1.1) - 2024-11-15 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index ba42832..aa18ad0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kxio" -version = "2.1.1" +version = "3.0.0" edition = "2021" authors = ["Paul Campbell "] description = "Provides injectable Filesystem and Network resources to make code more testable"