Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3dce378

Browse files
committedJan 15, 2021
stabilize new channels
Signed-off-by: Marc-Antoine Perennou <[email protected]>
1 parent 684ab18 commit 3dce378

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed
 

Diff for: ‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## [Unreleased]
99

10+
The new `async_std::channel` submodule, introduced in 1.8.0, has been stabilized. You no longer need the `unstable` feature to use it.
11+
1012
## Added
1113

1214
- Add `tokio1` feature ([#924](https://github.com/async-rs/async-std/pull/924))

Diff for: ‎src/channel.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
//! Channels
22
3-
#[cfg(feature = "unstable")]
4-
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
53
#[doc(inline)]
64
pub use async_channel::*;

Diff for: ‎tests/channel.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![cfg(feature = "unstable")]
21
#![allow(deprecated)]
32

43
use std::sync::atomic::{AtomicUsize, Ordering};

0 commit comments

Comments
 (0)
Please sign in to comment.