Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.7 #1279

Merged
merged 2 commits into from
Mar 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Version 0.7 of Mio contains various major changes compared to version 0.6.
Overall a large number of API changes have been made to reduce the complexity of
the implementation and remove overhead where possible.

Please refer to the upgrade guide in docs/upgrade_guide.md for additional
Please refer to the [blog post about
0.7-alpha.1](https://tokio.rs/blog/2019-12-mio-v0.7-alpha.1/) for additional
information.

## Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ name = "mio"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create git tag
version = "0.7.0-alpha.1"
version = "0.7.0"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = "Lightweight non-blocking IO"
documentation = "https://docs.rs/mio/0.7.0-alpha.1/mio/"
documentation = "https://docs.rs/mio/0.7.0"
homepage = "https://github.com/tokio-rs/mio"
repository = "https://github.com/tokio-rs/mio"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/mio/0.7.0-alpha.1")]
#![doc(html_root_url = "https://docs.rs/mio/0.7.0")]
#![deny(
missing_docs,
missing_debug_implementations,
Expand Down
7 changes: 0 additions & 7 deletions src/poll.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,13 +238,6 @@ impl Poll {
/// granularity (usually 1ms), and kernel scheduling delays mean that
/// the blocking interval may be overrun by a small amount.
///
/// `poll` returns the number of readiness events that have been pushed into
/// `events` or `Err` when an error has been encountered with the system
/// selector. The value returned is deprecated and will be removed in 0.7.0.
/// Accessing the events by index is also deprecated. Events can be
/// inserted by other events triggering, thus making sequential access
/// problematic. Use the iterator API instead. See [`iter`].
///
/// See the [struct] level documentation for a higher level discussion of
/// polling.
///
Expand Down