Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 8.08 KB

CHANGES.md

File metadata and controls

51 lines (42 loc) · 8.08 KB

Changelog

Legend

  • Feature : Something that you couldn’t do before.
  • Enhancement : A miscellaneous minor improvement.
  • Efficiency : An existing feature now may not require as much computation or memory.
  • Fix : Something that previously didn’t work as documentated or as expected should now work.
  • Documentation : An update to the documentation.
  • Other : Miscellaneous updates such as package structure or GitHub quality of life updates.

Version 0.1.7

Version 0.1.6

Version 0.1.5

  • Feature : kdtrees is now implemented. We're live!
  • Feature : KDTree can now be modified by insertion and deletion.
  • Feature : KDTree now maintains itself as a pseudo-balanced tree.
  • Feature : kdtrees._utils now implements format_array and check_dimensionality.
  • Enhancement : KDTree now supports k-nearest neighbors through nearest_neighbor.
  • Enhancement : KDTree now supports finding neighbors within a specified distance through proximal_neighbor.
  • Enhancement : KDTree now supports custom types through the use of an accept clause. See kdtrees.kdtree_type for implementation of required abstract base superclass.
  • Documentation : Updates made to the README and CHANGES.
  • Documentation : Documentation initialized and pydoc created.