File tree 4 files changed +15
-9
lines changed
4 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
7
7
8
8
## [ Unreleased]
9
9
10
+ # [ 1.6.0] - 2020-05-22
11
+
12
+ See ` 1.6.0-beta.1 ` and ` 1.6.0-beta.2 ` .
13
+
10
14
# [ 1.6.0-beta.2] - 2020-05-19
11
15
12
16
## Added
@@ -712,7 +716,8 @@ task::blocking(async {
712
716
713
717
- Initial beta release
714
718
715
- [ Unreleased ] : https://github.com/async-rs/async-std/compare/v1.6.0-beta.2...HEAD
719
+ [ Unreleased ] : https://github.com/async-rs/async-std/compare/v1.6.0...HEAD
720
+ [ 1.6.0 ] : https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0
716
721
[ 1.6.0-beta.2 ] : https://github.com/async-rs/async-std/compare/v1.6.0-beta.1...v1.6.0-beta.2
717
722
[ 1.6.0-beta.1 ] : https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0-beta.1
718
723
[ 1.5.0 ] : https://github.com/async-rs/async-std/compare/v1.4.0...v1.5.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " async-std"
3
- version = " 1.6.0-beta.2 "
3
+ version = " 1.6.0"
4
4
authors = [
5
5
" Stjepan Glavina <stjepang@gmail.com>" ,
6
6
" Yoshua Wuyts <yoshuawuyts@gmail.com>" ,
@@ -71,7 +71,7 @@ slab = { version = "0.4.2", optional = true }
71
71
surf = { version = " 1.0.3" , optional = true }
72
72
73
73
[target .'cfg(not(target_os = "unknown"))' .dependencies ]
74
- smol = { version = " 0.1.8 " , optional = true }
74
+ smol = { version = " 0.1.10 " , optional = true }
75
75
76
76
[target .'cfg(target_arch = "wasm32")' .dependencies ]
77
77
futures-timer = { version = " 3.0.2" , optional = true , features = [" wasm-bindgen" ] }
Original file line number Diff line number Diff line change 197
197
//!
198
198
//! ```toml
199
199
//! [dependencies.async-std]
200
- //! version = "1.6.0-beta.2 "
200
+ //! version = "1.6.0"
201
201
//! features = ["unstable"]
202
202
//! ```
203
203
//!
210
210
//!
211
211
//! ```toml
212
212
//! [dependencies.async-std]
213
- //! version = "1.6.0-beta.2 "
213
+ //! version = "1.6.0"
214
214
//! features = ["attributes"]
215
215
//! ```
216
216
//!
219
219
//!
220
220
//! ```toml
221
221
//! [dependencies.async-std]
222
- //! version = "1.6.0-beta.2 "
222
+ //! version = "1.6.0"
223
223
//! default-features = false
224
224
//! features = ["std"]
225
225
//! ```
229
229
//!
230
230
//! ```toml
231
231
//! [dependencies.async-std]
232
- //! version = "1.6.0-beta.2 "
232
+ //! version = "1.6.0"
233
233
//! default-features = false
234
234
//! features = ["alloc"]
235
235
//! ```
Original file line number Diff line number Diff line change @@ -992,6 +992,7 @@ impl<T> Drop for Channel<T> {
992
992
/// An error returned from the `try_send` method.
993
993
#[ cfg( feature = "unstable" ) ]
994
994
#[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
995
+ #[ derive( PartialEq , Eq ) ]
995
996
pub enum TrySendError < T > {
996
997
/// The channel is full but not disconnected.
997
998
Full ( T ) ,
@@ -1023,7 +1024,7 @@ impl<T> Display for TrySendError<T> {
1023
1024
/// An error returned from the `try_recv` method.
1024
1025
#[ cfg( feature = "unstable" ) ]
1025
1026
#[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
1026
- #[ derive( Debug ) ]
1027
+ #[ derive( Debug , PartialEq , Eq ) ]
1027
1028
pub enum TryRecvError {
1028
1029
/// The channel is empty but not disconnected.
1029
1030
Empty ,
@@ -1046,7 +1047,7 @@ impl Display for TryRecvError {
1046
1047
/// An error returned from the `recv` method.
1047
1048
#[ cfg( feature = "unstable" ) ]
1048
1049
#[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
1049
- #[ derive( Debug ) ]
1050
+ #[ derive( Debug , PartialEq , Eq ) ]
1050
1051
pub struct RecvError ;
1051
1052
1052
1053
impl Error for RecvError { }
You can’t perform that action at this time.
0 commit comments