diff --git a/docs/changelog.md b/docs/changelog.md index db78094..a09f5be 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,12 @@ # Kirsche Changelog + +## 2021-09-23, 0.2.1 - 0.2.6 + +Added: +- Multiple files as database instead of single file +- Visualization html page title is set + ## 2021-09-21 Added: diff --git a/kirsche/version.py b/kirsche/version.py index fe404ae..01ef120 100644 --- a/kirsche/version.py +++ b/kirsche/version.py @@ -1 +1 @@ -__version__ = "0.2.5" +__version__ = "0.2.6" diff --git a/kirsche/visualize.py b/kirsche/visualize.py index 9cabe3e..7e7cb42 100644 --- a/kirsche/visualize.py +++ b/kirsche/visualize.py @@ -42,7 +42,7 @@ def visualize(nodes: list, edges: list, title: str, target: Union[str, Path]) -> # Build the graph and export it to html file ( - Graph(init_opts=opts.InitOpts(width="1600px", height="800px")) + Graph(init_opts=opts.InitOpts(width="1600px", height="800px", page_title=title)) .add( series_name="", nodes=nodes,