Skip to content

Commit

Permalink
chore: release v1.6.4
Browse files Browse the repository at this point in the history
Co-authored-by: Yoshua Wuyts <yoshuawuyts+github@gmail.com>
  • Loading branch information
dignifiedquire and yoshuawuyts committed Sep 17, 2020
1 parent 352c54b commit 55fb871
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,23 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview

## [Unreleased]

# [1.6.4] - 2020-09-16

## Added

- Added `UdpSocket::peek` and `UdpSocket::peek_from` ([#853](https://github.com/async-rs/async-std/pull/853))

## Changed

- Extracted the executor into [async-global-executor](https://github.com/async-rs/async-global-executor) ([#867](https://github.com/async-rs/async-std/pull/867))

- Updated various dependencies

## Fixed

- Ensure `UnixStream::into_raw_fd` doesn't close the file descriptor ([#855](https://github.com/async-rs/async-std/issues/855))
- Fixed wasm builds and ensured better dependency management depending on the compile target ([#863](https://github.com/async-rs/async-std/pull/863))


# [1.6.3] - 2020-07-31

Expand Down Expand Up @@ -764,7 +778,8 @@ task::blocking(async {

- Initial beta release

[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.3...HEAD
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.4...HEAD
[1.6.3]: https://github.com/async-rs/async-std/compare/v1.6.3...v1.6.4
[1.6.3]: https://github.com/async-rs/async-std/compare/v1.6.2...v1.6.3
[1.6.2]: https://github.com/async-rs/async-std/compare/v1.6.1...v1.6.2
[1.6.1]: https://github.com/async-rs/async-std/compare/v1.6.0...v1.6.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-std"
version = "1.6.3"
version = "1.6.4"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
Expand Down
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.3"
//! version = "1.6.4"
//! features = ["unstable"]
//! ```
//!
Expand All @@ -210,7 +210,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.3"
//! version = "1.6.4"
//! features = ["attributes"]
//! ```
//!
Expand All @@ -219,7 +219,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.3"
//! version = "1.6.4"
//! features = ["tokio02"]
//! ```
//!
Expand All @@ -228,7 +228,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.3"
//! version = "1.6.4"
//! default-features = false
//! features = ["std"]
//! ```
Expand All @@ -238,7 +238,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.3"
//! version = "1.6.4"
//! default-features = false
//! features = ["alloc"]
//! ```
Expand Down

0 comments on commit 55fb871

Please sign in to comment.