File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 0.14.7] - 2023-12-22
8+ ### Changed
9+ - Tree Helper: ` get_tree_diff ` enhanced to compare tree attributes by taking in ` attr_list ` parameter, and indicates difference with ` (~) ` .
10+ ### Fixed
11+ - Tree Helper: ` get_tree_diff ` compare tree structure by considering all nodes (previously only consider leaf nodes).
12+
713## [ 0.14.6] - 2023-12-14
814### Added
915- Node: Able to access and delete node children via name with square bracket accessor with ` __getitem__ ` and ` __delitem__ ` magic methods.
@@ -397,6 +403,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
397403- Utility Iterator: Tree traversal methods.
398404- Workflow To Do App: Tree use case with to-do list implementation.
399405
406+ [ 0.14.7 ] : https://github.com/kayjan/bigtree/compare/0.14.6...0.14.7
400407[ 0.14.6 ] : https://github.com/kayjan/bigtree/compare/0.14.5...0.14.6
401408[ 0.14.5 ] : https://github.com/kayjan/bigtree/compare/0.14.4...0.14.5
402409[ 0.14.4 ] : https://github.com/kayjan/bigtree/compare/0.14.3...0.14.4
Original file line number Diff line number Diff line change 1- __version__ = "0.14.6 "
1+ __version__ = "0.14.7 "
22
33from bigtree .binarytree .construct import list_to_binarytree
44from bigtree .dag .construct import dataframe_to_dag , dict_to_dag , list_to_dag
You can’t perform that action at this time.
0 commit comments