Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare v1.0.0 release #453

Merged
merged 1 commit into from Dec 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,9 @@
# 1.0.0 (unreleased)
# 1.0.0 (December 22, 2020)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's already the 23rd.


### 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