Skip to content

Commit

Permalink
Merge pull request #160 from kayjan/v0.15.4
Browse files Browse the repository at this point in the history
v0.15.4
  • Loading branch information
kayjan authored Jan 10, 2024
2 parents 403dfe7 + b98ee20 commit 4d630c3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +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.15.4] - 2024-01-11
### Changed
- Tree Exporter: `hprint_tree` and `hyield_tree` to allow hiding names of intermediate node.
### Fixed
- Tree Constructor: `newick_to_tree` to handle invalid closing and use of apostrophe.
- Tree Exporter: `tree_to_newick` to handle special characters by wrapping them in apostrophe.

## [0.15.3] - 2024-01-08
### Added
- Tree Helper: `get_subtree` method to retrieve subtree.
Expand Down Expand Up @@ -436,6 +443,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.4]: https://github.com/kayjan/bigtree/compare/0.15.4...0.15.3
[0.15.3]: https://github.com/kayjan/bigtree/compare/0.15.3...0.15.2
[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
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.3"
__version__ = "0.15.4"

from bigtree.binarytree.construct import list_to_binarytree
from bigtree.dag.construct import dataframe_to_dag, dict_to_dag, list_to_dag
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ no-cov = "pytest . {args}"
lint = "black -l 88 ."
sort = "isort --profile black ."
mypy-type = "mypy bigtree"
sha256 = "curl -sL https://github.com/kayjan/bigtree/archive/{args}.tar.gz | openssl sha256"

[tool.hatch.envs.docs]
dependencies = [
Expand Down

0 comments on commit 4d630c3

Please sign in to comment.