Skip to content

Latest commit

 

History

History
58 lines (44 loc) · 1.81 KB

CHANGELOG.adoc

File metadata and controls

58 lines (44 loc) · 1.81 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.2 - 2024-11-30

Added

  • Add BitInt::checked_ilog and BitUint::checked_ilog (#12)

  • Add BitInt::checked_ilog2 and BitUint::checked_ilog2 (#12)

  • Add BitInt::checked_ilog10 and BitUint::checked_ilog10 (#12)

  • Add BitInt::checked_div_euclid and BitUint::checked_div_euclid (#14)

  • Add BitInt::checked_rem_euclid and BitUint::checked_rem_euclid (#14)

  • Add BitInt::checked_shl and BitUint::checked_shl (#14)

  • Add BitInt::checked_shr and BitUint::checked_shr (#14)

Changed

  • Bump MSRV to 1.67.0 (#12)

0.1.1 - 2024-11-14

Added

  • Implement BitInt::checked_rem and BitUint::checked_rem (#7)

  • Implement From<BitInt> and From<BitUint> for the underlying type (#8)

  • Implement BitInt::checked_neg and BitUint::checked_neg (#10)

  • Implement BitInt::checked_abs (#10)

  • Implement BitInt::checked_pow and BitUint::checked_pow (#10)

0.1.0 - 2024-11-12

Added

  • Initial release