diff --git a/CHANGELOG.md b/CHANGELOG.md index 65aed0e5..2f8902c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,9 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased] -* Add support for `tokio1::{AsyncRead, AsyncWrite, AsyncSeek, AsyncBufRead}`. +## [0.7.11] - 2020-12-23 + +* [Add support for `tokio1::{AsyncRead, AsyncWrite, AsyncSeek, AsyncBufRead}`.](https://github.com/taiki-e/auto_enums/pull/122) ## [0.7.10] - 2020-11-15 @@ -331,7 +333,8 @@ This project adheres to [Semantic Versioning](https://semver.org). Initial release -[Unreleased]: https://github.com/taiki-e/auto_enums/compare/v0.7.10...HEAD +[Unreleased]: https://github.com/taiki-e/auto_enums/compare/v0.7.11...HEAD +[0.7.11]: https://github.com/taiki-e/auto_enums/compare/v0.7.10...v0.7.11 [0.7.10]: https://github.com/taiki-e/auto_enums/compare/v0.7.9...v0.7.10 [0.7.9]: https://github.com/taiki-e/auto_enums/compare/v0.7.8...v0.7.9 [0.7.8]: https://github.com/taiki-e/auto_enums/compare/v0.7.7...v0.7.8 diff --git a/Cargo.toml b/Cargo.toml index ddef6055..5354269c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "auto_enums" -version = "0.7.10" +version = "0.7.11" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" @@ -81,8 +81,8 @@ trusted_len = ["auto_enums_derive/trusted_len"] # NB: futures*, tokio*, serde, and rayon are public dependencies. [dependencies] -auto_enums_core = { version = "=0.7.10", path = "core", default-features = false } -auto_enums_derive = { version = "=0.7.10", path = "derive", default-features = false } +auto_enums_core = { version = "=0.7.11", path = "core", default-features = false } +auto_enums_derive = { version = "=0.7.11", path = "derive", default-features = false } [dev-dependencies] rustversion = "1" diff --git a/core/Cargo.toml b/core/Cargo.toml index 90e10485..03518375 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "auto_enums_core" -version = "0.7.10" +version = "0.7.11" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 96f2800c..35e995c5 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "auto_enums_derive" -version = "0.7.10" +version = "0.7.11" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT"