Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2023-09-25 10:40:21 -07:00 committed by GitHub
parent 2f6c08f013
commit c3b5e01b3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
# Version 1.4.0
- Bump MSRV to 1.59. (#44)
- Remove the unused `memchr` dependency. (#38)
- Extract read/write pipes into the `piper` crate, which this crate now uses. (#37)
- Mark as `forbid(unsafe_code)` (#37).
- Set up logging using `tracing`. (#40)
# Version 1.3.1
- Gracefully handle the inability to spawn threads. (#31)

View File

@ -3,7 +3,7 @@ name = "blocking"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.3.1"
version = "1.4.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.59"