Skip to content

Commit

Permalink
chore: Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manokara committed Nov 11, 2020
1 parent 84e4198 commit 7c88d7e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0] - 2020-11-11

### Added

- Make ValueAccessor public so it can show in the docs
Expand Down Expand Up @@ -89,6 +91,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Ref variants from Value
- Debug prints

[Unreleased]: https://github.com/manokara/bencode-rs/compare/v0.7.0...HEAD
[Unreleased]: https://github.com/manokara/bencode-rs/compare/v0.8.0...HEAD
[0.8.0]: https://github.com/manokara/bencode-rs/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/manokara/bencode-rs/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/manokara/bencode-rs/releases/tag/v0.6.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bencode"
version = "0.7.0"
version = "0.8.0"
authors = ["Mark Nokalt <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Parser and API for working bencode data"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ Everything is documented, but I don't think I'm going to publish this to crates.

## Building

Add the following to your `dependencies` section:
Add one of the following to your `dependencies` section:

```
# Latest release
bencode = { git = "https://github.com/manokara/bencode-rs", rev = "v0.7.0" }
bencode = { git = "https://github.com/manokara/bencode-rs", rev = "v0.8.0" }
# Latest change
bencode = { git = "https://github.com/manokara/bencode-rs" }
```

### Enable JSON serialization

The library has a `json` feature (not yet released) that uses [nanoserde] to convert Values to and from JSON, which might be useful in some use cases. Add the feature to the `features` list of the crate definition above, like:
The library has a `json` feature that uses [nanoserde] to convert Values to and from JSON, which might be useful in some use cases. Add the feature to the `features` list of the crate definition above, like:

```
bencode = { ..., features = ["json"] }
Expand Down

0 comments on commit 7c88d7e

Please sign in to comment.