Skip to content

Commit f4ff544

Browse files
author
Stjepan Glavina
committed
Prepare for v0.99.0
1 parent 56cd645 commit f4ff544

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Version 0.99.0
2+
3+
- Initial beta release

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "async-std"
3-
version = "0.1.0"
4-
authors = ["Stjepan Glavina <[email protected]>"]
3+
version = "0.99.0"
4+
authors = [
5+
"Stjepan Glavina <[email protected]>",
6+
"The async-std Project Developers",
7+
]
58
edition = "2018"
69
license = "Apache-2.0/MIT"
710
repository = "https://github.com/async-rs/async-std"
@@ -19,7 +22,7 @@ rustdoc-args = ["--features docs"]
1922
docs = []
2023

2124
[dependencies]
22-
async-task = { git = "ssh://[email protected]/async-rs/async-task.git" }
25+
async-task = "1.0.0"
2326
cfg-if = "0.1.9"
2427
crossbeam-channel = "0.3.9"
2528
futures-preview = "0.3.0-alpha.17"

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Async version of Rust's standard library
22

3-
[![Build Status](https://travis-ci.com/async-rs/async-std.svg?branch=master)](https://travis-ci.org/async-rs/async-std)
4-
[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg)](
5-
https://github.com/async-rs/async-std)
3+
[![Build Status](https://travis-ci.com/async-rs/async-std.svg?branch=master)](https://travis-ci.com/async-rs/async-std)
4+
[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg)](https://github.com/async-rs/async-std)
65
[![Cargo](https://img.shields.io/crates/v/async-std.svg)](https://crates.io/crates/async-std)
76
[![Documentation](https://docs.rs/async-std/badge.svg)](https://docs.rs/async-std)
87
[![chat](https://img.shields.io/discord/598880689856970762.svg?logo=discord)](https://discord.gg/JvZeVNe)
98

10-
This crate provides an async version of [`std`]. It provides all the interfaces you are used to, but in an async version and ready for Rust's `async/await`-syntax.
9+
This crate provides an async version of [`std`]. It provides all the interfaces you
10+
are used to, but in an async version and ready for Rust's `async`/`await` syntax.
1111

1212
[`std`]: https://doc.rust-lang.org/std/index.html
1313

@@ -90,10 +90,10 @@ fn main() {
9090
Clone the repo:
9191

9292
```
93-
git clone [email protected]:stjepang/async-std.git && cd async-std
93+
git clone [email protected]:async-rs/async-std.git && cd async-std
9494
```
9595

96-
Read the docs:
96+
Generate docs:
9797

9898
```
9999
cargo doc --features docs.rs --open

src/io/timeout.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ use crate::task::{Context, Poll};
2424
/// let stdin = io::stdin();
2525
/// let mut line = String::new();
2626
/// let n = stdin.read_line(&mut line).await?;
27+
/// Ok(())
2728
/// })
2829
/// .await?;
2930
/// #

0 commit comments

Comments
 (0)