Skip to content

Commit b854b67

Browse files
authored
Merge pull request #934 from Keruspe/channels
stabilize new channels
2 parents b1b8355 + 8274995 commit b854b67

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
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

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "unstable")]
2-
31
use std::sync::atomic::{AtomicUsize, Ordering};
42
use std::sync::Arc;
53
use std::time::Duration;

0 commit comments

Comments
 (0)