From 2a46e64266fb295b0c507c55b53a646ae0bbaeea Mon Sep 17 00:00:00 2001 From: Stjepan Glavina Date: Mon, 27 Jul 2020 14:36:11 +0200 Subject: [PATCH] Bump to v0.3.3 --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c352703..643629b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 0.3.3 + +- Add `block_on()`. +- Use `SMOL_THREADS` environment variable. + # Version 0.3.2 - Reexport `FutureExt`. diff --git a/Cargo.toml b/Cargo.toml index 35c82a2..02e3891 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smol" -version = "0.3.2" +version = "0.3.3" authors = ["Stjepan Glavina "] edition = "2018" description = "A small and fast async runtime" @@ -21,10 +21,10 @@ async-channel = "1.1.1" async-executor = "0.1.1" async-io = "0.1.5" blocking = "0.5.0" +cfg-if = "0.1.10" easy-parallel = "3.1.0" futures-lite = "0.1.9" num_cpus = "1.13.0" -cfg-if = "0.1.10" [dependencies.tokio] version = "0.2.22"