Skip to content

Commit

Permalink
Prepare for v0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bluk committed Jul 31, 2022
1 parent 86f64ff commit 1d99c9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## [Unreleased]
## [0.7.0] - 2022-07-31

### Added

Expand All @@ -25,7 +25,7 @@
should work now when using `from_slice`.
* **Breaking change**: Refactored the `Error` type.

The `byte_offset()` method can help hint where the error occurred at (usually only helpful for deserialization).
The `Error::byte_offset()` method can help hint where the error occurred at (usually only helpful for deserialization).

Refactored to use `Box` to reduce the size of the return types. Rationale is
influenced by Serde JSON issues/discussions where an allocation for an exceptional code path is acceptable.
Expand Down Expand Up @@ -104,7 +104,8 @@
* `Serializer`, `Deserializer`, and related functions.


[Unreleased]: https://github.com/bluk/bt_bencode/compare/v0.6.1...HEAD
[Unreleased]: https://github.com/bluk/bt_bencode/compare/v0.7.0...HEAD
[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
[0.5.1]: https://github.com/bluk/bt_bencode/compare/v0.5.0...v0.5.1
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-alpha.2"
version = "0.7.0"
license = "MIT OR Apache-2.0"
authors = ["Bryant Luk <[email protected]>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ implementation.

```toml
[dependencies]
bt_bencode = "0.6.1"
bt_bencode = "0.7.0"
```

## Examples
Expand Down

0 comments on commit 1d99c9f

Please sign in to comment.