Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.48 KB

CHANGELOG.md

File metadata and controls

51 lines (34 loc) · 1.48 KB

Changelog

All notable changes to avl-bst will be documented in this file. The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Changed

0.2.1 (2021-04-27)

Fixed

  • Added dedicated module entry point for CommonJS environments.

Added

  • Added "exports" definitions in package.json.
  • Added UMD bundle pointers for CDN services.

0.2.0 (2021-04-25)

Added

  • method IAVLTree.isEmpty()
  • method IAVLTree.size()

0.1.1 (2021-04-25)

Fixed

  • Renamed UMD bundle names to match the npm package name.
  • package.json path to type declarations.

0.1.0 (2021-04-25, initial release)

Added

Initial version featuring the basic BST operations:

  • Insert values
  • Search values
  • Traverse tree
  • Delete values