From 8ce3f43675f4144e5d83fb6cdc63ff13b194a39c Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 14 Jan 2024 15:59:00 +0900 Subject: [PATCH] Update docs and changelog --- CHANGELOG.md | 2 +- README.md | 4 ++-- src/lib.rs | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5fde1f..65b9aa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] -- Add support for `http_body1::Body`. +- Add support for `http_body1::Body`. ([#161](https://github.com/taiki-e/auto_enums/pull/161), thanks @nwtgck) ## [0.8.3] - 2023-10-21 diff --git a/README.md b/README.md index ffd8e45..03bb87b 100644 --- a/README.md +++ b/README.md @@ -156,6 +156,8 @@ enum Foo { - Enable to use [tokio v0.2][tokio02] traits. - **`tokio01`** - Enable to use [tokio v0.1][tokio01] traits. +- **`http_body1`** + - Enable to use [http_body v1][http_body1] traits. - **`coroutine_trait`** - Enable to use `[std|core]::ops::Coroutine` trait. - Note that this feature is unstable and may cause incompatible changes between patch versions. @@ -165,8 +167,6 @@ enum Foo { - **`trusted_len`** - Enable to use `[std|core]::iter::TrustedLen` trait. - Note that this feature is unstable and may cause incompatible changes between patch versions. -- **`http_body1`** - - Enable to use [http_body v1][http_body1] traits. ### `type_analysis` feature diff --git a/src/lib.rs b/src/lib.rs index 22d58cf..a2c5e55 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -796,6 +796,8 @@ These don't derive traits, but derive inherent methods instead. - Enable to use [tokio v0.2][tokio02] traits. - **`tokio01`** - Enable to use [tokio v0.1][tokio01] traits. +- **`http_body1`** + - Enable to use [http_body v1][http_body1] traits. - **`coroutine_trait`** - Enable to use `[std|core]::ops::Coroutine` trait. - Note that this feature is unstable and may cause incompatible changes between patch versions.