diff --git a/CHANGELOG.md b/CHANGELOG.md index 641ea33..2ccbe21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.3.1 + +- Fix some typos in docs. + # Version 0.3.0 - Reexport `futures-lite`, `blocking`, `async-executor`. diff --git a/Cargo.toml b/Cargo.toml index 0011ca5..d6d5cc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smol" -version = "0.3.0" +version = "0.3.1" authors = ["Stjepan Glavina "] edition = "2018" description = "A small and fast async runtime" diff --git a/README.md b/README.md index 3dce60f..793a611 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ tokio runtime for its libraries: ```toml [dependencies] -smol = { version = "0.2", features = ["tokio02"] } +smol = { version = "0.3", features = ["tokio02"] } ``` [tokio]: https://docs.rs/tokio diff --git a/examples/other-runtimes.rs b/examples/other-runtimes.rs index fa5460d..499c050 100644 --- a/examples/other-runtimes.rs +++ b/examples/other-runtimes.rs @@ -4,7 +4,7 @@ //! //! ```toml //! [dependencies] -//! smol = { version = "0.2", features = ["tokio02"] } +//! smol = { version = "0.3", features = ["tokio02"] } //! ``` //! //! Run with: diff --git a/src/lib.rs b/src/lib.rs index 5683e09..aa1dbf6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -43,7 +43,7 @@ //! //! ```toml //! [dependencies] -//! smol = { version = "0.2", features = ["tokio02"] } +//! smol = { version = "0.3", features = ["tokio02"] } //! ``` //! //! [tokio]: https://docs.rs/tokio