Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2023-12-02 11:01:01 -08:00 committed by GitHub
parent e94a46be67
commit 85a3f0f85a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
# Version 2.1.0
- Make it so `read_line` and other futures use a naive implementation of byte
searching unless the `memchr` feature is enabled. This prevents needing to
compile the `memchr` crate unless it is desired. (#77)
# Version 2.0.1
- Remove dependency on the `waker-fn` crate. (#81)

View File

@ -3,7 +3,7 @@ name = "futures-lite"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.0.1"
version = "2.1.0"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Contributors to futures-rs",