Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.16.1] - 2023-01-29
### Fixed
- Misc: Compatibility of mkdocs with readthedocs.

## [0.16.0] - 2023-01-28
### Added
- Misc: Documentation using mkdocs.
Expand Down Expand Up @@ -482,7 +486,8 @@ 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.

[Unreleased]: https://github.com/kayjan/bigtree/compare/0.16.0...HEAD
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.16.1...HEAD
[0.16.1]: https://github.com/kayjan/bigtree/compare/0.16.0...0.16.1
[0.16.0]: https://github.com/kayjan/bigtree/compare/0.15.7...0.16.0
[0.15.7]: https://github.com/kayjan/bigtree/compare/0.15.6...0.15.7
[0.15.6]: https://github.com/kayjan/bigtree/compare/0.15.5...0.15.6
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Please read the [Contributing](https://bigtree.readthedocs.io/en/latest/others/contributing.html) guidelines in the documentation site.
Please read the [Contributing](https://bigtree.readthedocs.io/en/latest/contributing/) guidelines in the documentation site.
4 changes: 2 additions & 2 deletions bigtree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.16.0"
__version__ = "0.16.1"

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 @@ -75,4 +75,4 @@
from bigtree.workflows.app_calendar import Calendar
from bigtree.workflows.app_todo import AppToDo

sphinx_versions = ["latest", "0.16.0", "0.15.7", "0.14.8"]
sphinx_versions = ["latest", "0.16.1", "0.15.7", "0.14.8"]