Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.18 KB

CHANGELOG.md

File metadata and controls

34 lines (26 loc) · 1.18 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.

Unreleased

[0.3.2] - 2022-11-10

Changed

Make RbTree::new and RbTree::is_empty both const.

[0.3.1] - 2022-09-16

Changed

  • Updated sha2 dependency.

[0.3.0] - 2022-01-13

Added

  • RbTree::iter() method.
  • impls of Clone, PartialEq, Eq, PartialOrd, Ord, FromIterator, and Debug for RbTree.

[0.2.0] - 2021-09-16

Added

  • RbTree::value_range() method to get a witness for a range of keys with values.

Changed

  • RbTree::key_range() method returns tighter key bounds which reduces the size of witnesses.
  • Updated the version of candid from 0.6.19 to 0.7.1 (#72).
  • Hash tree leaves can now hold both references and values (#121). This is a BREAKING CHANGE, some clients might need to slightly change and recompile their code.

[0.1.0] - 2021-05-04

Added

  • Initial release of the library.