diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a9aa643..932f1da8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. @@ -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 diff --git a/bigtree/__init__.py b/bigtree/__init__.py index 4ceec3c6..a143f2dd 100644 --- a/bigtree/__init__.py +++ b/bigtree/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.4.0" +__version__ = "1.4.1" from bigtree._globals import Globals from bigtree.binarytree.binarytree import BinaryTree