Skip to content

Commit

Permalink
Merge pull request #155 from kayjan/v0.15.2
Browse files Browse the repository at this point in the history
v0.15.2
  • Loading branch information
kayjan authored Jan 7, 2024
2 parents 025acac + b7eebfd commit a6ae625
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ 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.15.1] - 2024-01-05
## [0.15.2] - 2024-01-08
### Added
- Tree Constructor: `newick_to_tree` to convert Newick notation to tree.
- Tree Exporter: `hprint_tree` and `hyield_tree` to print and retrieve results for tree in horizontal orientation.
- Node: Added `hshow` method to print tree in horizontal orientation to console.

## [0.15.1] - 2024-01-05
### Added
- Tree Constructor: `newick_to_tree` to convert Newick notation to tree.
### Changed
- Tree Exporter: `tree_to_newick` to accept more parameters to parse length and attributes.
### Fixed
Expand Down Expand Up @@ -429,6 +432,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.15.2]: https://github.com/kayjan/bigtree/compare/0.15.2...0.15.1
[0.15.1]: https://github.com/kayjan/bigtree/compare/0.15.1...0.15.0
[0.15.0]: https://github.com/kayjan/bigtree/compare/0.15.0...0.14.8
[0.14.8]: https://github.com/kayjan/bigtree/compare/0.14.7...0.14.8
Expand Down
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.15.1"
__version__ = "0.15.2"

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

0 comments on commit a6ae625

Please sign in to comment.