Skip to content

Commit 1d99c9f

Browse files
committed
Prepare for v0.7.0 release
1 parent 86f64ff commit 1d99c9f

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## [Unreleased]
3+
## [0.7.0] - 2022-07-31
44

55
### Added
66

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

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

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

106106

107-
[Unreleased]: https://github.com/bluk/bt_bencode/compare/v0.6.1...HEAD
107+
[Unreleased]: https://github.com/bluk/bt_bencode/compare/v0.7.0...HEAD
108+
[0.7.0]: https://github.com/bluk/bt_bencode/compare/v0.6.1...v0.7.0
108109
[0.6.1]: https://github.com/bluk/bt_bencode/compare/v0.6.0...v0.6.1
109110
[0.6.0]: https://github.com/bluk/bt_bencode/compare/v0.5.1...v0.6.0
110111
[0.5.1]: https://github.com/bluk/bt_bencode/compare/v0.5.0...v0.5.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bt_bencode"
3-
version = "0.7.0-alpha.2"
3+
version = "0.7.0"
44
license = "MIT OR Apache-2.0"
55
authors = ["Bryant Luk <[email protected]>"]
66
edition = "2018"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ implementation.
1616

1717
```toml
1818
[dependencies]
19-
bt_bencode = "0.6.1"
19+
bt_bencode = "0.7.0"
2020
```
2121

2222
## Examples

0 commit comments

Comments
 (0)