Skip to content

Releases: iwburns/id-tree

id_tree v1.8.0

13 Apr 13:16
81319ca
Compare
Choose a tag to compare

This release adds a new method on Tree called make_nth_sibling.

Special thanks to @wyhinton for the contribution!

id_tree v1.7.0

01 Sep 16:15
6d0e5f2
Compare
Choose a tag to compare

This release adds more serialization/de-serialization support via serde.

We now have derive(Serialize, Deserialize) on NodeId, Node<T>, and Tree<T> (if the serde_support feature is enabled).

Special thanks to @dermetfan for the contributions!

id_tree v1.6.0

24 Aug 13:30
4972b05
Compare
Choose a tag to compare

This release adds two new ways to manipulate Nodes within a Tree:

  • make_first_sibling - Puts the node in the first position relative to other sibling nodes.
  • make_last_sibling - Puts the node in the last position relative to other sibling nodes.

Special thanks to @spearman for the contributions!