Skip to content

Latest commit

 

History

History
105 lines (76 loc) · 3.95 KB

CHANGELOG.md

File metadata and controls

105 lines (76 loc) · 3.95 KB

ChangeLog

v0.1.6 (2020-10-30)

Full ChangeLog for v0.1.6

Fixed Bugs

  • Avoid trigger a rustc bug which causes errors when build with target wasm32-unknown-unknown (#54).

v0.1.5 (2020-10-30)

Full ChangeLog for v0.1.5

Major Updates

  • Use features to let all structs be optional.
  • Should NOT consider hashes as numbers.
    • Add methods to replace numerical methods for hashes.
      • zero() -> empty()
      • is_zero() -> is_empty()
      • is_max() -> is_full()
    • BREAKING CHANGE Remove checked_neg(..) for hashes.
  • Upgrade dependencies.

Fixed Bugs

  • Constructors can not handle short inputs correctly (#42).
  • as_fixed_bytes_mut(&mut self) return an immutable reference (#42).

v0.1.4 (2019-04-03)

Full ChangeLog for v0.1.4

Major Updates

  • Export errors in the main crates.

v0.1.3 (2019-04-02)

Full ChangeLog for v0.1.3

Major Updates

  • Add a script to run rustfmt for code in quote!() (#22).
  • Add readable constructors via proc-macro (#33).

Fixed Bugs

  • Hangs when performing the division and remainder operations (#34).
  • Overflows when performing the division and remainder operations (#36).

Known Issues

  • Errors are not re-exported in the main crates. But they still can be imported from the internal crates.

v0.1.2 (2019-12-18)

Full ChangeLog for v0.1.2

Major Updates

  • Fix dependencies in Cargo.toml.

v0.1.1 (2018-12-14) - Yanked!

Full ChangeLog for v0.1.1

Major Updates

v0.1.0 (2018-12-07)

Full ChangeLog for v0.1.0

Major Updates

  • Release the first version of Rust-NumExt -- Libraries to extend the rust built-in numeric types.