Skip to content

Commit 1130279

Browse files
authored
Merge pull request #1027 from joshtriplett/twelve
1.12.0
2 parents 2aa8a43 + 6856d50 commit 1130279

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ All notable changes to async-std will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://book.async.rs/overview/stability-guarantees.html).
77

8-
# [Unreleased]
8+
# [1.12.0] - 2022-06-18
99

1010
## Added
11-
1211
- `std::task_spawn_blocking` is now stabilized. We consider it a fundamental API for bridging between blocking code and async code, and we widely use it within async-std's own implementation.
12+
- Add `TryFrom` implementations to convert `TcpListener`, `TcpStream`, `UdpSocket`, `UnixDatagram`, `UnixListener`, and `UnixStream` to their synchronous equivalents, including putting them back into blocking mode.
1313

14-
## Removed
1514
## Changed
15+
- async-std no longer depends on `num_cpus`; it uses functionality in the standard library instead (via `async-global-executor`).
16+
- Miscellaneous documentation fixes and cleanups.
1617

1718
# [1.11.0] - 2022-03-22
1819

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.11.0"
3+
version = "1.12.0"
44
authors = [
55
"Stjepan Glavina <[email protected]>",
66
"Yoshua Wuyts <[email protected]>",

0 commit comments

Comments
 (0)