Skip to content

Commit 8735506

Browse files
authored
Merge pull request #113 from kayjan/v0.14.2
v0.14.2
2 parents eeec3ec + 8178d77 commit 8735506

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
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

7+
## [0.14.2] - TBD
8+
### Added
9+
- Misc: RTD integration.
10+
- Misc: Enable manual publishing of python package.
11+
712
## [0.14.1] - 2023-10-18
813
### Added
914
- 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
365370
- Utility Iterator: Tree traversal methods.
366371
- Workflow To Do App: Tree use case with to-do list implementation.
367372

373+
[0.14.2]: https://github.com/kayjan/bigtree/compare/0.14.1...0.14.2
368374
[0.14.1]: https://github.com/kayjan/bigtree/compare/0.14.0...0.14.1
369375
[0.14.0]: https://github.com/kayjan/bigtree/compare/0.13.3...0.14.0
370376
[0.13.3]: https://github.com/kayjan/bigtree/compare/0.13.2...0.13.3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Big Tree Python Package
22

3-
Tree Implementation for Python, integrated with Python list, dictionary, and pandas DataFrame.
3+
Tree Implementation and Methods for Python, integrated with Python list, dictionary, and pandas DataFrame.
44

55
It is pythonic, making it easy to learn and extendable to many types of workflows.
66

bigtree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.14.1"
1+
__version__ = "0.14.2"
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)