Skip to content

Commit 3b2b3d9

Browse files
authored
Merge pull request #163 from kayjan/v0.15.5
V0.15.5
2 parents 82865ba + dc7ecdf commit 3b2b3d9

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

CHANGELOG.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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+
## [Unreleased]
8+
9+
## [0.15.5] - 2023-01-17
10+
### Changed
11+
- Misc: Neater handling of strings for tests.
12+
- Misc: Better examples for merging trees and weighted trees in Sphinx documentation.
13+
- Misc: Fix links and introduce unreleased segment in CHANGELOG.
14+
715
## [0.15.4] - 2024-01-11
816
### Changed
917
- Tree Exporter: `hprint_tree` and `hyield_tree` to allow hiding names of intermediate node.
@@ -443,11 +451,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
443451
- Utility Iterator: Tree traversal methods.
444452
- Workflow To Do App: Tree use case with to-do list implementation.
445453

446-
[0.15.4]: https://github.com/kayjan/bigtree/compare/0.15.4...0.15.3
447-
[0.15.3]: https://github.com/kayjan/bigtree/compare/0.15.3...0.15.2
448-
[0.15.2]: https://github.com/kayjan/bigtree/compare/0.15.2...0.15.1
449-
[0.15.1]: https://github.com/kayjan/bigtree/compare/0.15.1...0.15.0
450-
[0.15.0]: https://github.com/kayjan/bigtree/compare/0.15.0...0.14.8
454+
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.15.5...HEAD
455+
[0.15.5]: https://github.com/kayjan/bigtree/compare/0.15.4...0.15.5
456+
[0.15.4]: https://github.com/kayjan/bigtree/compare/0.15.3...0.15.4
457+
[0.15.3]: https://github.com/kayjan/bigtree/compare/0.15.2...0.15.3
458+
[0.15.2]: https://github.com/kayjan/bigtree/compare/0.15.1...0.15.2
459+
[0.15.1]: https://github.com/kayjan/bigtree/compare/0.15.0...0.15.1
460+
[0.15.0]: https://github.com/kayjan/bigtree/compare/0.14.8...0.15.0
451461
[0.14.8]: https://github.com/kayjan/bigtree/compare/0.14.7...0.14.8
452462
[0.14.7]: https://github.com/kayjan/bigtree/compare/0.14.6...0.14.7
453463
[0.14.6]: https://github.com/kayjan/bigtree/compare/0.14.5...0.14.6

bigtree/__init__.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.15.4"
1+
__version__ = "0.15.5"
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
@@ -60,14 +60,6 @@
6060
find_relative_path,
6161
findall,
6262
)
63-
from bigtree.utils.exceptions import (
64-
CorruptedTreeError,
65-
DuplicatedNodeError,
66-
LoopError,
67-
NotFoundError,
68-
SearchError,
69-
TreeError,
70-
)
7163
from bigtree.utils.groot import speak_like_groot, whoami
7264
from bigtree.utils.iterators import (
7365
dag_iterator,

0 commit comments

Comments
 (0)