Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
Add changelog entry and bump the version.

Note that during the 0.1.1 release I updated `fuzz/generate-files.sh`
incorrectly so it has 0.2.0 in it already.

See commit: `42f3cda Bump version to 0.1.1`
  • Loading branch information
tcharding committed Feb 14, 2024
1 parent a6172d2 commit 97ddfc4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# unrelease
# 0.2.0 - 2024-02-12

- Bump MSRV to 1.56.1
- For improved ergonomics, add a prelude module [#36](https://github.com/rust-bitcoin/hex-conservative/pull/36)
- Add a `serde` module [#37](https://github.com/rust-bitcoin/hex-conservative/pull/37)
- Remove arbitrary padding limit [#41](https://github.com/rust-bitcoin/hex-conservative/pull/41)

## Performance improvements

- Revamp `BufEncoder` [](https://github.com/rust-bitcoin/hex-conservative/pull/52)

## Improve error handling

- Change `FromHex` associated error type [#54](https://github.com/rust-bitcoin/hex-conservative/pull/54)
- Update the derives on error types[#31](https://github.com/rust-bitcoin/hex-conservative/pull/31)
- Hide error internal [#44](https://github.com/rust-bitcoin/hex-conservative/pull/44)
- Return specific error from `HexToByesIter::new` [#62](https://github.com/rust-bitcoin/hex-conservative/pull/62)

# 0.1.1 - 2023-07-19

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 = "hex-conservative"
version = "0.1.1"
version = "0.2.0"
authors = ["Martin Habovštiak <martin.habovstiak@gmail.com>", "Andrew Poelstra <apoelstra@wpsoftware.net>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/hex-conservative"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cargo-fuzz = true

[dependencies]
honggfuzz = { version = "0.5.55", default-features = false }
hex = { path = "..", package = "hex-conservative", version = "0.1.1" }
hex = { path = "..", package = "hex-conservative", version = "0.2.0" }

[[bin]]
name = "hex"
Expand Down

0 comments on commit 97ddfc4

Please sign in to comment.