Skip to content

Commit 0423b29

Browse files
authored
Merge pull request #249 from kayjan/fix-type-hints
bump: v0.18.3
2 parents abd5a3a + d78260b commit 0423b29

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ 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

77
## [Unreleased]
8+
9+
## [0.18.3] - 2024-06-05
810
### Changed:
911
- Binary Tree Constructor: Type hints to return more generic TypeVar for use with subclasses.
1012
- DAG Constructor: Type hints to return more generic TypeVar for use with subclasses.
@@ -585,7 +587,8 @@ ignore null attribute columns.
585587
- Utility Iterator: Tree traversal methods.
586588
- Workflow To Do App: Tree use case with to-do list implementation.
587589

588-
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.18.2...HEAD
590+
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.18.3...HEAD
591+
[0.18.3]: https://github.com/kayjan/bigtree/compare/0.18.2...0.18.3
589592
[0.18.2]: https://github.com/kayjan/bigtree/compare/0.18.1...0.18.2
590593
[0.18.1]: https://github.com/kayjan/bigtree/compare/0.18.0...0.18.1
591594
[0.18.0]: https://github.com/kayjan/bigtree/compare/0.17.2...0.18.0

bigtree/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.18.2"
1+
__version__ = "0.18.3"
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

0 commit comments

Comments
 (0)