Skip to content

Commit d043f6d

Browse files
committed
Prepare for v0.6.0 release
1 parent 9a6d5c5 commit d043f6d

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# CHANGELOG
22

3+
## v0.6.0
4+
5+
### Added
6+
7+
* Allow serialization when no_std.
8+
9+
Adds `Write` trait and implementations.
10+
11+
Thanks [@bheesham](https://github.com/bheesham).
12+
313
## v0.5.1
414

515
### Updated

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[package]
22
name = "bt_bencode"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
license = "MIT OR Apache-2.0"
55
authors = ["Bryant Luk <[email protected]>"]
66
edition = "2018"
77
description = "A Bencode encoding/decoding implementation."
88
repository = "https://github.com/bluk/bt_bencode"
9+
documentation = "https://docs.rs/bt_bencode/"
910
readme = "README.md"
1011
include = [
1112
"src/**/*.rs",
@@ -14,6 +15,8 @@ include = [
1415
"LICENSE-APACHE",
1516
"LICENSE-MIT",
1617
]
18+
keywords = ["bencode", "bittorrent", "torrent", "serialization", "serde"]
19+
categories = ["encoding", "no-std"]
1720

1821
[dependencies]
1922
serde = {version = "1", default-features = false }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It uses the [Serde][serde] library to serialize and deserialize Bencode data.
1212

1313
```toml
1414
[dependencies]
15-
bt_bencode = "0.5.1"
15+
bt_bencode = "0.6.0"
1616
```
1717

1818
## License
@@ -31,4 +31,4 @@ dual licensed as above, without any additional terms or conditions.
3131
[wikipedia_bencode]: https://en.wikipedia.org/wiki/Bencode
3232
[bep_0003]: http://www.bittorrent.org/beps/bep_0003.html
3333
[serde]: https://serde.rs
34-
[docs_rs_bt_bencode]: https://docs.rs/bt_bencode/latest/bt_bencode/
34+
[docs_rs_bt_bencode]: https://docs.rs/bt_bencode/latest/bt_bencode/

0 commit comments

Comments
 (0)