Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2024-04-27 16:04:10 -07:00 committed by GitHub
parent 393659524e
commit 1a20703b97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
# Version 1.6.0
- Panics that occur in `unblock`ed functions are now propagated to the calling
function. (#58)
- Add a new optional `tracing` feature. When enabled, this feature adds logging
to the implementation. By default it is disabled. (#60)
- Remove the unused `fastrand` dependency. (#61)
# Version 1.5.1
- Fix compilation on WebAssembly targets (#54).

View File

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