Skip to content

Commit

Permalink
Merge pull request #256 from kayjan/v0.19.0
Browse files Browse the repository at this point in the history
bump: v0.19.0
  • Loading branch information
kayjan authored Jun 15, 2024
2 parents 850b16a + b4bb697 commit 94e2ad2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ 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]

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

## [0.18.3] - 2024-06-05
### Changed:
Expand Down Expand Up @@ -594,7 +597,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/0.18.3...HEAD
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.19.0...HEAD
[0.19.0]: https://github.com/kayjan/bigtree/compare/0.18.3...0.19.0
[0.18.3]: https://github.com/kayjan/bigtree/compare/0.18.2...0.18.3
[0.18.2]: https://github.com/kayjan/bigtree/compare/0.18.1...0.18.2
[0.18.1]: https://github.com/kayjan/bigtree/compare/0.18.0...0.18.1
Expand Down
4 changes: 1 addition & 3 deletions bigtree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.18.3"
__version__ = "0.19.0"

from bigtree.binarytree.construct import list_to_binarytree
from bigtree.dag.construct import dataframe_to_dag, dict_to_dag, list_to_dag
Expand Down Expand Up @@ -96,5 +96,3 @@
from bigtree.utils.plot import reingold_tilford
from bigtree.workflows.app_calendar import Calendar
from bigtree.workflows.app_todo import AppToDo

sphinx_versions = ["latest", "0.16.2", "0.15.7", "0.14.8"]
8 changes: 4 additions & 4 deletions docs_sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@
"localtoc_label_text": "Contents",
"nav_next_text": "Next",
"nav_previous_text": "Previous",
"version_info": {
version: f"https://bigtree.readthedocs.io/en/{version}"
for version in bigtree.sphinx_versions
},
# "version_info": {
# version: f"https://bigtree.readthedocs.io/en/{version}"
# for version in bigtree.sphinx_versions
# },
}

html_static_path = ["_static"]
Expand Down

0 comments on commit 94e2ad2

Please sign in to comment.