Skip to content

Commit b4bb697

Browse files
committed
bump: v0.19.0
1 parent 850b16a commit b4bb697

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@ 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

77
## [Unreleased]
8+
9+
## [0.19.0] - 2024-06-15
810
### Changed:
911
- Tree Exporter: Print functions to accept custom style that is implemented as dataclass, this is a more
1012
object-oriented way of parsing arguments.
1113
This affects functions `print_tree`, `yield_tree`, `hprint_tree`, and `hyield_tree`.
1214
The argument `custom_style` is deprecated, and argument `style` is used instead.
1315
**This might not be backwards-compatible!**
1416
- Misc: Updated docstrings to be more comprehensive for tree constructor and tree exporter.
17+
- Misc: Update documentation badges and conda information.
1518

1619
## [0.18.3] - 2024-06-05
1720
### Changed:
@@ -594,7 +597,8 @@ ignore null attribute columns.
594597
- Utility Iterator: Tree traversal methods.
595598
- Workflow To Do App: Tree use case with to-do list implementation.
596599

597-
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.18.3...HEAD
600+
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.19.0...HEAD
601+
[0.19.0]: https://github.com/kayjan/bigtree/compare/0.18.3...0.19.0
598602
[0.18.3]: https://github.com/kayjan/bigtree/compare/0.18.2...0.18.3
599603
[0.18.2]: https://github.com/kayjan/bigtree/compare/0.18.1...0.18.2
600604
[0.18.1]: https://github.com/kayjan/bigtree/compare/0.18.0...0.18.1

bigtree/__init__.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.18.3"
1+
__version__ = "0.19.0"
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
@@ -96,5 +96,3 @@
9696
from bigtree.utils.plot import reingold_tilford
9797
from bigtree.workflows.app_calendar import Calendar
9898
from bigtree.workflows.app_todo import AppToDo
99-
100-
sphinx_versions = ["latest", "0.16.2", "0.15.7", "0.14.8"]

docs_sphinx/source/conf.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@
8080
"localtoc_label_text": "Contents",
8181
"nav_next_text": "Next",
8282
"nav_previous_text": "Previous",
83-
"version_info": {
84-
version: f"https://bigtree.readthedocs.io/en/{version}"
85-
for version in bigtree.sphinx_versions
86-
},
83+
# "version_info": {
84+
# version: f"https://bigtree.readthedocs.io/en/{version}"
85+
# for version in bigtree.sphinx_versions
86+
# },
8787
}
8888

8989
html_static_path = ["_static"]

0 commit comments

Comments
 (0)