From 1b8c7dc4815f1db0a4b9bad4c9accb25644264d3 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou Date: Wed, 16 Mar 2022 20:48:19 +0100 Subject: [PATCH] prepare 1.11.0 Signed-off-by: Marc-Antoine Perennou --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa3c8c3c..5747ff19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,23 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview ## Removed ## Changed +# [1.11.0] - 2022-03-22 + +This release improves compile times by up to 55% on initial builds, and up to 75% on recompilation. Additionally we've added a few new APIs and made some tweaks. + +## Added +- `TcpListener::into_incoming` to convert a `TcpListener` into a stream of incoming TCP connections + +## Removed +- The internal `extension_trait` macro had been removed. This drastically improves compile times for `async-std`, but changes the way our documentation is rendered. This is a cosmetic change only, and all existing code should continue to work as it did before. + +## Changed +- Some internal code has been de-macro-ified, making for quicker compile times. +- We now use the default recursion limit. + +## Docs +- Several docs improvements / fixes. + # [1.10.0] - 2021-08-25 This release comes with an assortment of small features and fixes. diff --git a/Cargo.toml b/Cargo.toml index bc9078cd..c2ea9d78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-std" -version = "1.10.0" +version = "1.11.0" authors = [ "Stjepan Glavina ", "Yoshua Wuyts ",