aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Carl Lerche <me@carllerche.com> 2020-12-22 15:30:20 -0800
committerGravatar GitHub <noreply@github.com> 2020-12-22 15:30:20 -0800
commit064ad9a1a07e3fb62fb0e8ec17a637f45c0890ed (patch)
tree2ce21bd37dc98bcdb3dc6f7141b3943e52f9ab8f
parented1d1946604f97c35440536a4ddae970d665ce13 (diff)
downloadbytes-064ad9a1a07e3fb62fb0e8ec17a637f45c0890ed.tar.gz
bytes-064ad9a1a07e3fb62fb0e8ec17a637f45c0890ed.tar.zst
bytes-064ad9a1a07e3fb62fb0e8ec17a637f45c0890ed.zip
chore: prepare v1.0.0 release (#453)v1.0.0
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.toml1
-rw-r--r--README.md4
3 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 16f153c..5cabb8c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,9 @@
-# 1.0.0 (unreleased)
+# 1.0.0 (December 22, 2020)
+### Changed
- Rename Buf/BufMut, methods to chunk/chunk_mut (#450)
+
+### Removed
- remove unused Buf implementation. (#449)
# 0.6.0 (October 21, 2020)
diff --git a/Cargo.toml b/Cargo.toml
index d17a5a5..cec534c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,7 +19,6 @@ readme = "README.md"
keywords = ["buffers", "zero-copy", "io"]
categories = ["network-programming", "data-structures"]
edition = "2018"
-publish = false
[features]
default = ["std"]
diff --git a/README.md b/README.md
index 2064c26..468485d 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ To use `bytes`, first add this to your `Cargo.toml`:
```toml
[dependencies]
-bytes = "1.0"
+bytes = "1"
```
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 = "1.0", features = ["serde"] }
+bytes = { version = "1", features = ["serde"] }
```
## License