Skip to content

Commit 2c63046

Browse files
authored
Merge pull request #1009 from Keruspe/release-1.11
prepare 1.11.0
2 parents f201f4a + 1b8c7dc commit 2c63046

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,23 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
1111
## Removed
1212
## Changed
1313

14+
# [1.11.0] - 2022-03-22
15+
16+
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.
17+
18+
## Added
19+
- `TcpListener::into_incoming` to convert a `TcpListener` into a stream of incoming TCP connections
20+
21+
## Removed
22+
- 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.
23+
24+
## Changed
25+
- Some internal code has been de-macro-ified, making for quicker compile times.
26+
- We now use the default recursion limit.
27+
28+
## Docs
29+
- Several docs improvements / fixes.
30+
1431
# [1.10.0] - 2021-08-25
1532

1633
This release comes with an assortment of small features and fixes.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-std"
3-
version = "1.10.0"
3+
version = "1.11.0"
44
authors = [
55
"Stjepan Glavina <[email protected]>",
66
"Yoshua Wuyts <[email protected]>",

0 commit comments

Comments
 (0)