Skip to content

Commit 211123c

Browse files
authored
Merge pull request #271 from kayjan/fix-links
Fix links
2 parents b4ef4be + f9ecae3 commit 211123c

File tree

6 files changed

+15
-10
lines changed

6 files changed

+15
-10
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.19.3] - 2024-07-09
10+
### Fixed:
11+
- Docs: Update links in README and rtd docs.
12+
913
## [0.19.2] - 2024-06-28
1014
### Added:
1115
- Docs: Add description and credits to playground.
@@ -611,7 +615,8 @@ ignore null attribute columns.
611615
- Utility Iterator: Tree traversal methods.
612616
- Workflow To Do App: Tree use case with to-do list implementation.
613617

614-
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.19.2...HEAD
618+
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.19.3...HEAD
619+
[0.19.3]: https://github.com/kayjan/bigtree/compare/0.19.2...0.19.3
615620
[0.19.2]: https://github.com/kayjan/bigtree/compare/0.19.1...0.19.2
616621
[0.19.1]: https://github.com/kayjan/bigtree/compare/0.19.0...0.19.1
617622
[0.19.0]: https://github.com/kayjan/bigtree/compare/0.18.3...0.19.0

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ There are 3 segments to Big Tree consisting of Tree, Binary Tree, and Directed A
2929

3030
For **Tree** implementation, there are 9 main components.
3131

32-
1. [**🌺 Node**](https://bigtree.readthedocs.io/en/stable/bigtree/node/)
32+
1. [**🌺 Node**](https://bigtree.readthedocs.io/en/stable/bigtree/node/node)
3333
1. ``BaseNode``, extendable class
3434
2. ``Node``, BaseNode with node name attribute
3535
2. [**✨ Constructing Tree**](https://bigtree.readthedocs.io/en/stable/bigtree/tree/construct/)
@@ -73,15 +73,15 @@ For **Tree** implementation, there are 9 main components.
7373
3. Export tree to *dot* (can save to .dot, .png, .svg, .jpeg files)
7474
4. Export tree to *Pillow* (can save to .png, .jpg)
7575
5. Export tree to *Mermaid Flowchart* (can display on .md)
76-
9. [**✔️ Workflows**](https://bigtree.readthedocs.io/en/stable/demo/workflow/)
76+
9. [**✔️ Workflows**](https://bigtree.readthedocs.io/en/stable/bigtree/workflows/app_todo)
7777
1. Sample workflows for tree demonstration!
7878

7979
--------
8080

8181
For **Binary Tree** implementation, there are 3 main components.
8282
Binary Node inherits from Node, so the components in Tree implementation are also available in Binary Tree.
8383

84-
1. [**🌿 Node**](https://bigtree.readthedocs.io/en/stable/bigtree/node/)
84+
1. [**🌿 Node**](https://bigtree.readthedocs.io/en/stable/bigtree/node/binarynode)
8585
1. ``BinaryNode``, Node with binary tree rules
8686
2. [**✨ Constructing Binary Tree**](https://bigtree.readthedocs.io/en/stable/bigtree/binarytree/construct/)
8787
1. From *list*, using flattened list structure
@@ -92,7 +92,7 @@ Binary Node inherits from Node, so the components in Tree implementation are als
9292

9393
For **Directed Acyclic Graph (DAG)** implementation, there are 4 main components.
9494

95-
1. [**🌼 Node**](https://bigtree.readthedocs.io/en/stable/bigtree/node/)
95+
1. [**🌼 Node**](https://bigtree.readthedocs.io/en/stable/bigtree/node/dagnode)
9696
1. ``DAGNode``, extendable class for constructing Directed Acyclic Graph (DAG)
9797
2. [**✨ Constructing DAG**](https://bigtree.readthedocs.io/en/stable/bigtree/dag/construct/)
9898
1. From *list*, containing parent-child tuples

bigtree/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.19.2"
1+
__version__ = "0.19.3"
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

docs/home/binarytree.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Binary Tree
77
For **Binary Tree** implementation, there are 3 main components.
88
Binary Node inherits from Node, so the components in Tree implementation are also available in Binary Tree.
99

10-
## [**🌿 Node**](../bigtree/node/index.md)
10+
## [**🌿 Node**](../bigtree/node/binarynode.md)
1111
- ``BinaryNode``, Node with binary tree rules
1212

1313
## [**✨ Constructing Binary Tree**](../bigtree/binarytree/construct.md)

docs/home/dag.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Directed Acyclic Graph (DAG)
66

77
For **Directed Acyclic Graph (DAG)** implementation, there are 4 main components.
88

9-
## [**🌼 Node**](../bigtree/node/index.md)
9+
## [**🌼 Node**](../bigtree/node/dagnode.md)
1010
- ``DAGNode``, extendable class for constructing Directed Acyclic Graph (DAG)
1111

1212
## [**✨ Constructing DAG**](../bigtree/dag/construct.md)

docs/home/tree.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Tree
66

77
For **Tree** implementation, there are 9 main components.
88

9-
## [**🌺 Node**](../bigtree/node/index.md)
9+
## [**🌺 Node**](../bigtree/node/node.md)
1010
- ``BaseNode``, extendable class
1111
- ``Node``, BaseNode with node name attribute
1212

@@ -58,5 +58,5 @@ For **Tree** implementation, there are 9 main components.
5858
- Export tree to *Pillow* (can save to .png, .jpg)
5959
- Export tree to *Mermaid Flowchart* (can display on .md)
6060

61-
## [**✔️ Workflows**](../bigtree/workflows/index.md)
61+
## [**✔️ Workflows**](../bigtree/workflows/app_todo.md)
6262
- Sample workflows for tree demonstration!

0 commit comments

Comments
 (0)