Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ 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]

## [1.4.1] - 2026-05-02
### Changed:
- Tree Search: Modify type hint to include returning None
- Misc: Clean up and remove redundant lines.
Expand Down Expand Up @@ -912,7 +914,8 @@ ignore null attribute columns.
- Utility Iterator: Tree traversal methods.
- Workflow To Do App: Tree use case with to-do list implementation.

[Unreleased]: https://github.com/kayjan/bigtree/compare/1.4.0...HEAD
[Unreleased]: https://github.com/kayjan/bigtree/compare/1.4.1...HEAD
[1.4.1]: https://github.com/kayjan/bigtree/compare/1.4.0...1.4.1
[1.4.0]: https://github.com/kayjan/bigtree/compare/1.3.1...1.4.0
[1.3.1]: https://github.com/kayjan/bigtree/compare/1.3.0...1.3.1
[1.3.0]: https://github.com/kayjan/bigtree/compare/1.2.0...1.3.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__ = "1.4.0"
__version__ = "1.4.1"

from bigtree._globals import Globals
from bigtree.binarytree.binarytree import BinaryTree
Expand Down
Loading