Release 1.2.0

This commit is contained in:
Taiki Endo 2022-03-13 00:19:30 +09:00
parent 8dae6af497
commit df796bd4f5
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
# Version 1.2.0
- Return `Task` from `unblock` instead of returning opaque type. (#25)
# Version 1.1.0
- Add an environment variable to customize the maximum number of threads. (#21)

View File

@ -3,15 +3,13 @@ name = "blocking"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.1.0"
version = "1.2.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.40"
description = "A thread pool for isolating blocking I/O in async programs"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/blocking"
homepage = "https://github.com/smol-rs/blocking"
documentation = "https://docs.rs/blocking"
keywords = ["async", "file", "stdio", "stdin", "process"]
categories = ["asynchronous", "concurrency"]
exclude = ["/.*"]