Skip to content

Commit

Permalink
v0.7.0 tree modification to accept merge_leaves, add documentation an…
Browse files Browse the repository at this point in the history
…d images
  • Loading branch information
kayjan committed Feb 17, 2023
1 parent a481d3a commit 01d3877
Show file tree
Hide file tree
Showing 7 changed files with 1,165 additions and 200 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.0] - 2023-02-18
### Added
- Tree Modify: Accept `merge_leaves` type of modification, enhance documentation to provide more examples and illustrations.

## [0.6.10] - 2023-01-23
### Fixed
- Tree Construct: `str_to_tree` to accept prefixes to support unicode characters in node names.
- Tree Construct: `str_to_tree` accept prefixes to support unicode characters in node names.

## [0.6.9] - 2023-01-22
### Added
Expand Down Expand Up @@ -181,6 +185,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Utility Iterator: Tree traversal methods.
- Workflow To Do App: Tree use case with to-do list implementation.

[0.7.0]: https://github.com/kayjan/bigtree/compare/v0.6.10...v0.7.0
[0.6.10]: https://github.com/kayjan/bigtree/compare/v0.6.9...v0.6.10
[0.6.9]: https://github.com/kayjan/bigtree/compare/v0.6.8...v0.6.9
[0.6.8]: https://github.com/kayjan/bigtree/compare/v0.6.7...v0.6.8
Expand Down
Binary file added assets/modify_advanced.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/modify_shift_and_copy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion bigtree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.6.10"
__version__ = "0.7.0"

from bigtree.binarytree.construct import list_to_binarytree
from bigtree.dag.construct import dataframe_to_dag, dict_to_dag, list_to_dag
Expand Down
Loading

0 comments on commit 01d3877

Please sign in to comment.