From e398b0a209dd5f71687eba4920c6ea87e40f0e70 Mon Sep 17 00:00:00 2001 From: Arve Knudsen Date: Sun, 20 Dec 2020 16:31:22 +0100 Subject: [PATCH] Update readme / changelog (#451) --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cebb061..16f153c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 1.0.0 (unreleased) + +- Rename Buf/BufMut, methods to chunk/chunk_mut (#450) +- remove unused Buf implementation. (#449) + # 0.6.0 (October 21, 2020) API polish in preparation for a 1.0 release. diff --git a/README.md b/README.md index 9ccc785..2064c26 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ To use `bytes`, first add this to your `Cargo.toml`: ```toml [dependencies] -bytes = "0.6" +bytes = "1.0" ``` Next, add this to your crate: @@ -33,7 +33,7 @@ Serde support is optional and disabled by default. To enable use the feature `se ```toml [dependencies] -bytes = { version = "0.6", features = ["serde"] } +bytes = { version = "1.0", features = ["serde"] } ``` ## License