Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.56 KB

File metadata and controls

45 lines (35 loc) · 1.56 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.1.5 - 2026-02-11

Changed

  • Remove the const generic parameter, making the crate fully compatible with stable Rust
    (no more nightly toolchain required).
  • Introduce a sealed Case trait to control casing behavior at the type level.

Added

  • Add Uppercase and Lowercase tag types implementing Case.

0.1.3 - 2022-04-28

Changed

  • Bump Rust edition to 2021

0.1.2 - 2021-08-11

Added

  • new_unchecked method which skips string checking.

Fixed

  • Update CHANGELOG links

0.1.1 - 2021-07-21

Added

  • Convenient conversion to uppercase and lowercase hexadecimal string.

0.1.0 - 2021-07-20

Added

  • HexString type which is a structured representation of a hexadecimal string.
  • Conversion from and into array of bytes.
  • Convenient type aliases UpperHexString and LowerHexString.
  • Feature flag serde for serde support on HexString type.