Skip to content

Latest commit

 

History

History
78 lines (47 loc) · 1.83 KB

File metadata and controls

78 lines (47 loc) · 1.83 KB

Change Log

0.6.1 -- 2025-12-09

  • Update pastey to 0.2.0.

0.6.0 -- 2025-09-01

Changed

  • Use pastey instead of paste which is no longer maintained. This also requires upgrading the MSRV to 1.54.

0.5.0 -- 2022-08-15

Fixed

  • Fix prelude not exporting OptionEq.

0.4.1 -- 2022-06-29

Added

  • Fix repository link in Cargo.toml.
  • Specify Minimum Supported Rust Version.

Fixed

  • Error: fix a typo in Display impl.

Changed

  • Add forbid(unsafe_code) constraint.

0.4.0 -- 2021-10-24

Fixed

  • Fix auto implementations for OptionOp and OptionOpAssign. In previous version all the implementations required that Op & OpAssign be implemented, which was not consistent with documentation and other Option* traits. Now, the user can implement OptionOp and OptionOpAssign on the inner type and automatically benefit from the implementations on the other variations.

Changed

  • Factorize code in macros.

0.3.0 -- 2021-10-18

Changed

  • Breaking: don't export internal macros.

0.2.0 -- 2021-10-15

Added

  • #[must_use] attributes where applicable.
  • Documentation for the associated types.

0.1.0 -- 2021-10-07

  • First version with the most common operations.