Skip to content

Commit

Permalink
Merge rust-bitcoin#110: Release tracking PR: hex-conservative 0.3.0
Browse files Browse the repository at this point in the history
f5d87a1 Bump version (Tobin C. Harding)

Pull request description:

  In preparation for release add a changelog entry, bump the version number, and update the lock files

ACKs for top commit:
  apoelstra:
    ACK f5d87a1; successfully ran local tests; lots of stuff!

Tree-SHA512: e65a2b5a33f1fd7075d4601bcd0bc5013aff68726521b5aa5164fa81ca6e3705834f02ad16aed30d93ff70b231fa47edefcbb671c0e289e4ea736557f4e5fed3
  • Loading branch information
apoelstra committed Oct 30, 2024
2 parents 2e86574 + f5d87a1 commit c760775
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# 0.3.0 - 2024-09-18

- Re-implement `HexWriter` [#113](https://github.com/rust-bitcoin/hex-conservative/pull/113)
- Fix `Display` width and precision of `DisplayByteSlice` [#114](https://github.com/rust-bitcoin/hex-conservative/pull/114)
- Encoding performance improvements [#117](https://github.com/rust-bitcoin/hex-conservative/pull/117)
- Relax bounds of `BytesToHexIter` [#118](https://github.com/rust-bitcoin/hex-conservative/pull/118)
- Add case to `BytesToHexIter` [#120](https://github.com/rust-bitcoin/hex-conservative/pull/120)
- Encapsulate unsafe code inside the table module [#121](https://github.com/rust-bitcoin/hex-conservative/pull/121)
- Fix `HexToBytesIter::size_hint` [#122](https://github.com/rust-bitcoin/hex-conservative/pull/122)
- Restrict `BufEncoder` to uniform case encoding [#119](https://github.com/rust-bitcoin/hex-conservative/pull/119)
- Remove the `core2` dependency [#105](https://github.com/rust-bitcoin/hex-conservative/pull/105)
- Introduce more serde utilities [#92](https://github.com/rust-bitcoin/hex-conservative/pull/92)
- Add `impl_fmt_traits` macro [#90](https://github.com/rust-bitcoin/hex-conservative/pull/90)
- Enable serialization of byte slices [#96](https://github.com/rust-bitcoin/hex-conservative/pull/96)
- Bump MSRV to Rust `1.63.0` [#102](https://github.com/rust-bitcoin/hex-conservative/pull/102)
- Store position of invalid char in `InvalidCharError` [#107](https://github.com/rust-bitcoin/hex-conservative/pull/107)
- Only encode the bytes formatted in the hex string [#108](https://github.com/rust-bitcoin/hex-conservative/pull/108)

# 0.2.1 - 2024-05-17

- Add a new `impl_fmt_traits` macro that can be used to implement `fmt::{LowerHex, UpperHex,
Expand Down
2 changes: 1 addition & 1 deletion Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ checksum = "5edd69c67b2f8e0911629b7e6b8a34cb3956613cd7c6e6414966dee349c2db4f"

[[package]]
name = "hex-conservative"
version = "0.2.1"
version = "0.3.0"
dependencies = [
"arrayvec",
"serde",
Expand Down
2 changes: 1 addition & 1 deletion Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"

[[package]]
name = "hex-conservative"
version = "0.2.1"
version = "0.3.0"
dependencies = [
"arrayvec",
"serde",
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.2.1"
version = "0.3.0"
authors = ["Martin Habovštiak <[email protected]>", "Andrew Poelstra <[email protected]>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/hex-conservative"
Expand Down

0 comments on commit c760775

Please sign in to comment.