mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-28 00:00:17 +02:00
chore: prepare v1.0.0 release (#453)
This commit is contained in:
+4
-1
@@ -1,6 +1,9 @@
|
|||||||
# 1.0.0 (unreleased)
|
# 1.0.0 (December 22, 2020)
|
||||||
|
|
||||||
|
### Changed
|
||||||
- Rename Buf/BufMut, methods to chunk/chunk_mut (#450)
|
- Rename Buf/BufMut, methods to chunk/chunk_mut (#450)
|
||||||
|
|
||||||
|
### Removed
|
||||||
- remove unused Buf implementation. (#449)
|
- remove unused Buf implementation. (#449)
|
||||||
|
|
||||||
# 0.6.0 (October 21, 2020)
|
# 0.6.0 (October 21, 2020)
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ readme = "README.md"
|
|||||||
keywords = ["buffers", "zero-copy", "io"]
|
keywords = ["buffers", "zero-copy", "io"]
|
||||||
categories = ["network-programming", "data-structures"]
|
categories = ["network-programming", "data-structures"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ To use `bytes`, first add this to your `Cargo.toml`:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = "1.0"
|
bytes = "1"
|
||||||
```
|
```
|
||||||
|
|
||||||
Next, add this to your crate:
|
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
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = { version = "1.0", features = ["serde"] }
|
bytes = { version = "1", features = ["serde"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|||||||
Reference in New Issue
Block a user