diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ccbe21..c352703 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.3.2 + +- Reexport `FutureExt`. + # Version 0.3.1 - Fix some typos in docs. diff --git a/Cargo.toml b/Cargo.toml index f7e5b72..13e3df4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smol" -version = "0.3.1" +version = "0.3.2" authors = ["Stjepan Glavina "] edition = "2018" description = "A small and fast async runtime" diff --git a/README.md b/README.md index d79a368..9ff6b00 100644 --- a/README.md +++ b/README.md @@ -47,9 +47,8 @@ Look inside the [examples] directory for more. All async libraries work with smol out of the box. -The only exception is [tokio], which is traditionally incompatible with [futures], breaks -when used with other executors, and lacks documentation on how to fix such errors. -Fortunately, there are ways around it. +The only exception is [tokio], which is traditionally incompatible with [futures] and crashes +when called from other executors. Fortunately, there are ways around it. Enable the `tokio02` feature flag and `smol::run()` will create a minimal tokio runtime for its libraries: