Skip to content

Commit

Permalink
Prepare for v0.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bluk committed Jan 1, 2024
1 parent 6ca39a2 commit f537440
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@

### [Unreleased]

- Add `ByteString` type as a specialized type for serialization and
deserialization of bencoded strings.
## [0.8.0]

### Updated

- **Breaking change**: Modify `Value` variants to use `ByteString` instead of
`serde_bytes::ByteBuf` for byte string values. Removed the `serde_bytes`
dependency. While it is still possible to use `serde_bytes` in an
application's code, the crate has not reached `1.0`, so the `ByteString` was
added and used as a public API instead.
dependency.

### Added

- Add `ByteString` type as a specialized type for serialization and
deserialization of bencoded strings.

## [0.7.0] - 2022-07-31

Expand Down Expand Up @@ -113,7 +118,8 @@

* `Serializer`, `Deserializer`, and related functions.

[Unreleased]: https://github.com/bluk/bt_bencode/compare/v0.7.0...HEAD
[Unreleased]: https://github.com/bluk/bt_bencode/compare/v0.8.0...HEAD
[0.8.0]: https://github.com/bluk/bt_bencode/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/bluk/bt_bencode/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/bluk/bt_bencode/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/bluk/bt_bencode/compare/v0.5.1...v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bt_bencode"
version = "0.7.0"
version = "0.8.0"
license = "MIT OR Apache-2.0"
authors = ["Bryant Luk <[email protected]>"]
edition = "2018"
Expand Down

0 comments on commit f537440

Please sign in to comment.