@@ -16,10 +16,32 @@ Changelog
1616%%%%%%%%%
1717
1818
19- v5.8.0 (8 Apr 2020, @ankostis): Plot job, fix RTD deps
20- ======================================================
21- + FEAT(PLOT): plots are now fully configurable with *graph *, *node * & *edge *
22- ("non-private") attributes, conveyed with the `networkx ` graph given to plot routine.
19+ v6.0.0 (13 Apr 2020, @ankostis): New Plotting Device...
20+ =======================================================
21+ + ENH/REFACT(PLOT):
22+
23+ + REFACT/BREAK: plots are now fully configurable with :term: `plot styles `
24+ through the use of :term: `installed plotter `.
25+ + ENH: Render operation nodes with Graphviz *HTML-Table Labels *.
26+
27+ .. graphtik ::
28+ :hide:
29+
30+ >>> from graphtik import compose, operation, varargs
31+ >>> from graphtik import plot
32+ >>> netop = compose(' ' , operation(print , name = ' print-something' , needs = varargs(" any" ), provides = " str" )())
33+ >>> netop.net.graph.graph[' label' ] = None
34+ >>> dot = netop.plot(
35+ ... plotter= plot.Plotter(style = plot.Style(kw_legend = None )),
36+ ... name= None
37+ ... )
38+
39+ + ENH: Convey graph, node & edge ("non-private") attributes from the *networkx * graph
40+ given to the :term: `plotter `.
41+ + FEAT: Operation node link to docs (hackish, based on a URL formatting).
42+ + Improved plotting documentation & +3 new terms.
43+
44+ * FIX: ReadTheDice deps
2345
2446+ drop(plot): don't suppress the grafting of the title in netop images.
2547
0 commit comments