Version   Changes
--------  --------------------------------------------------------------------
 0.11.2   Fixed defect in fn f256::total_cmp (issue #4).

 0.11.1   Code hygiene based on clippy lints.

 0.11.0   Added fns f256::rn2sum, f256::frn2sum, f256::rn2mul.
          Set minimal rust version to 1.86.0.

 0.10.0   Added fns f256::signum, f256::next_up, f256::next_down, f256::hypot.

 0.9.0    Added impl TryFrom<&f256> to all native integer types.
          Added fns f256::copysign and f256::midpoint.

 0.8.0    Added fn f256::cbrt.
          Set minimal rust version to 1.85.1.

 0.7.0    Added fns for exponentiation:
          f256::powi, f256::powf, f256::exp, f256::exp_m1, f256::exp2
          Set minimal rust version to 1.80.0.

 0.6.0    Added fns for calculating logarithms:
          f256::log, f256::log10, f256::log2, f256::ln, f256::ln_1p

 0.5.0    Added fns f256::mul2, mul_pow2, f256::div2, f256::div_pow2.

 0.4.0    Added trigonometric functions asin, acos and atan.
          Set minimal rust version to 1.74.1.

 0.3.0    Added trigonometric functions sin, cos and tan.

 0.2.0    Added some basic mathematical constants.
          Implemented fns f256::sqrt, f256::to_degrees and f256::to_radians.
          Implemented traits Rem, RemAssign.
          Added tests based on random data generated via crate rug (GNU MPFR).
          Added mod num_traits and correspoding optional feature.
          Allow 'no_std' environment.
          Added CI actions.

 0.1.2    Fixed defects.

 0.1.1    Moved lookup tables to separate crates.

 0.1.0    First public version.
          Including:
          * basic properties of f256
          * basic functions like abs/min/max
          * basic constants
          * conversion from integers and f64/f32 and from/to bits/bytes
          * conversion from/to strings
          * impl of traits Default, Add, Sub, Mul, Div, AddAssign, SubAssign,
            MulAssign, DivAssign, PartialEq, PartialOrd
