Skip to content

Commit

Permalink
chore: prepare v1.0.0 release (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche committed Dec 22, 2020
1 parent ed1d194 commit 064ad9a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 4 additions & 1 deletion 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)
Expand Down
1 change: 0 additions & 1 deletion Cargo.toml
Expand Up @@ -19,7 +19,6 @@ readme = "README.md"
keywords = ["buffers", "zero-copy", "io"]
categories = ["network-programming", "data-structures"]
edition = "2018"
publish = false

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 064ad9a

Please sign in to comment.