From f0606e761b981a243982c5a2690d634b2c332459 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Aug 2024 04:55:16 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 23 +++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..61e32678 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ +# Changelog +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). + +## [Unreleased] + +## [0.6.0](https://github.com/alexrudy/hyperdriver/compare/v0.5.6...v0.6.0) - 2024-08-11 + +### Other +- Improved main module documentation +- regularize imports for http:: crate and Body +- remove unused sevice.rs +- make the release CI pipeline named sensibly +- Adopt the release-plz action +- Merge pull request [#117](https://github.com/alexrudy/hyperdriver/pull/117) from alexrudy/feature/checkout-delayed-drop +- Merge pull request [#118](https://github.com/alexrudy/hyperdriver/pull/118) from alexrudy/feature/client-layers +- Split the client into service layers +- Remove BOut from Client Builder struct +- Rename generic parameters for HttpService impl +- Make client generic over body types +- Refine what Body does to a simpler subset diff --git a/Cargo.lock b/Cargo.lock index 4bd854dd..f305d2a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -685,7 +685,7 @@ dependencies = [ [[package]] name = "hyperdriver" -version = "0.5.6" +version = "0.6.0" dependencies = [ "axum", "bytes", diff --git a/Cargo.toml b/Cargo.toml index e77c6bab..4da8afa8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperdriver" -version = "0.5.6" +version = "0.6.0" edition = "2021" description = "The missing middle for Hyper - Servers and Clients with ergonomic APIs" license = "MIT"