Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.49 KB

CHANGELOG.md

File metadata and controls

39 lines (32 loc) · 1.49 KB

Changelog

v0.8.0-rc3

  • Fix point subtraction. Bug was introduced in v0.8.0-rc1. #127
  • Add Polynomial::lagrange_basis function #130
  • Katex <> Docs integration #131
    Allows using KaTeX in documentation comments. Math formulas will be properly rendered on docs.rs.
  • LDEI proof minor improvements #133
    Adds missing implementations of Clone and serialization traits.
  • Update hmac, digest, sha2,sha3 dependencies #134
    hmac: v0.7.1v0.11
    digest: v0.8.1v0.9
    sha2: v0.8.0v0.9
    sha3: v0.8.2v0.9

v0.8.0-rc2

  • Remove dependency on ring_algorithm crate #125, #124

v0.8.0-rc1

  • Elliptic curve API has been significantly changed #120

    In particular: ECPoint, ECScalar traits were redesigned. They remain, but are not supposed to be used directly anymore. In replacement, we introduce structures Point, Scalar representing elliptic point and scalar. See curv::elliptic::curves module-level documentation to learn more.

  • Add low degree exponent interpolation proof #119