Skip to content

Commit 064ad9a

Browse files
authored
chore: prepare v1.0.0 release (#453)
1 parent ed1d194 commit 064ad9a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
# 1.0.0 (unreleased)
1+
# 1.0.0 (December 22, 2020)
22

3+
### Changed
34
- Rename Buf/BufMut, methods to chunk/chunk_mut (#450)
5+
6+
### Removed
47
- remove unused Buf implementation. (#449)
58

69
# 0.6.0 (October 21, 2020)

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ readme = "README.md"
1919
keywords = ["buffers", "zero-copy", "io"]
2020
categories = ["network-programming", "data-structures"]
2121
edition = "2018"
22-
publish = false
2322

2423
[features]
2524
default = ["std"]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To use `bytes`, first add this to your `Cargo.toml`:
1818

1919
```toml
2020
[dependencies]
21-
bytes = "1.0"
21+
bytes = "1"
2222
```
2323

2424
Next, add this to your crate:
@@ -33,7 +33,7 @@ Serde support is optional and disabled by default. To enable use the feature `se
3333

3434
```toml
3535
[dependencies]
36-
bytes = { version = "1.0", features = ["serde"] }
36+
bytes = { version = "1", features = ["serde"] }
3737
```
3838

3939
## License

0 commit comments

Comments
 (0)