Skip to content

Commit

Permalink
Merge pull request #163 from kayjan/v0.15.5
Browse files Browse the repository at this point in the history
V0.15.5
  • Loading branch information
kayjan authored Jan 17, 2024
2 parents 82865ba + dc7ecdf commit 3b2b3d9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
20 changes: 15 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +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).

## [Unreleased]

## [0.15.5] - 2023-01-17
### Changed
- Misc: Neater handling of strings for tests.
- Misc: Better examples for merging trees and weighted trees in Sphinx documentation.
- Misc: Fix links and introduce unreleased segment in CHANGELOG.

## [0.15.4] - 2024-01-11
### Changed
- Tree Exporter: `hprint_tree` and `hyield_tree` to allow hiding names of intermediate node.
Expand Down Expand Up @@ -443,11 +451,13 @@ 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
[0.15.0]: https://github.com/kayjan/bigtree/compare/0.15.0...0.14.8
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.15.5...HEAD
[0.15.5]: https://github.com/kayjan/bigtree/compare/0.15.4...0.15.5
[0.15.4]: https://github.com/kayjan/bigtree/compare/0.15.3...0.15.4
[0.15.3]: https://github.com/kayjan/bigtree/compare/0.15.2...0.15.3
[0.15.2]: https://github.com/kayjan/bigtree/compare/0.15.1...0.15.2
[0.15.1]: https://github.com/kayjan/bigtree/compare/0.15.0...0.15.1
[0.15.0]: https://github.com/kayjan/bigtree/compare/0.14.8...0.15.0
[0.14.8]: https://github.com/kayjan/bigtree/compare/0.14.7...0.14.8
[0.14.7]: https://github.com/kayjan/bigtree/compare/0.14.6...0.14.7
[0.14.6]: https://github.com/kayjan/bigtree/compare/0.14.5...0.14.6
Expand Down
10 changes: 1 addition & 9 deletions bigtree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.15.4"
__version__ = "0.15.5"

from bigtree.binarytree.construct import list_to_binarytree
from bigtree.dag.construct import dataframe_to_dag, dict_to_dag, list_to_dag
Expand Down Expand Up @@ -60,14 +60,6 @@
find_relative_path,
findall,
)
from bigtree.utils.exceptions import (
CorruptedTreeError,
DuplicatedNodeError,
LoopError,
NotFoundError,
SearchError,
TreeError,
)
from bigtree.utils.groot import speak_like_groot, whoami
from bigtree.utils.iterators import (
dag_iterator,
Expand Down

0 comments on commit 3b2b3d9

Please sign in to comment.