Skip to content

Commit b103b53

Browse files
authored
Merge pull request #135 from kayjan/v0.14.7
V0.14.7
2 parents 0cfb2b7 + e25270b commit b103b53

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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

bigtree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.14.6"
1+
__version__ = "0.14.7"
22

33
from bigtree.binarytree.construct import list_to_binarytree
44
from bigtree.dag.construct import dataframe_to_dag, dict_to_dag, list_to_dag

0 commit comments

Comments
 (0)