From 8178d770b0aee3a228b09930f2df1221db630825 Mon Sep 17 00:00:00 2001 From: Kay Date: Sat, 21 Oct 2023 10:46:57 +0800 Subject: [PATCH] v0.14.2 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- bigtree/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bdeaa1a..1733dbd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. 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). +## [0.14.2] - TBD +### Added +- Misc: RTD integration. +- Misc: Enable manual publishing of python package. + ## [0.14.1] - 2023-10-18 ### Added - Misc: Changes to main branch checks if the latest version exists (using git tag) before publishing package and building documentation. @@ -365,6 +370,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Utility Iterator: Tree traversal methods. - Workflow To Do App: Tree use case with to-do list implementation. +[0.14.2]: https://github.com/kayjan/bigtree/compare/0.14.1...0.14.2 [0.14.1]: https://github.com/kayjan/bigtree/compare/0.14.0...0.14.1 [0.14.0]: https://github.com/kayjan/bigtree/compare/0.13.3...0.14.0 [0.13.3]: https://github.com/kayjan/bigtree/compare/0.13.2...0.13.3 diff --git a/README.md b/README.md index 249dd025..b09cf125 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Big Tree Python Package -Tree Implementation for Python, integrated with Python list, dictionary, and pandas DataFrame. +Tree Implementation and Methods for Python, integrated with Python list, dictionary, and pandas DataFrame. It is pythonic, making it easy to learn and extendable to many types of workflows. diff --git a/bigtree/__init__.py b/bigtree/__init__.py index 8547215e..17835de3 100644 --- a/bigtree/__init__.py +++ b/bigtree/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.14.1" +__version__ = "0.14.2" from bigtree.binarytree.construct import list_to_binarytree from bigtree.dag.construct import dataframe_to_dag, dict_to_dag, list_to_dag