From c90904a7223321ec97cc2c05d13c3b46802e69ae Mon Sep 17 00:00:00 2001 From: Kay Date: Sat, 2 May 2026 08:58:57 +0800 Subject: [PATCH] bump: v1.4.1 --- CHANGELOG.md | 5 ++++- bigtree/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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