Skip to content

Commit 92e0e69

Browse files
committed
chore(VER): bump v6.1.0-->v6.2.0; CHANGES
1 parent 6b401b2 commit 92e0e69

File tree

2 files changed

+26
-9
lines changed

2 files changed

+26
-9
lines changed

CHANGES.rst

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,33 @@ Changelog
1616
%%%%%%%%%
1717

1818

19-
v6.1.1 (XX Apr 2020, @ankostis):
20-
================================
21-
+ ENH(plot): apply more styles on data-nodes; distinguish between Prune/Cancel/Evict
22-
data Styles and add tooltips for those cases (ie data nodes without values).
19+
v6.2.0 (19 Apr 2020, @ankostis): plotting fixes & more styles, net find util methods
20+
====================================================================================
21+
+ PLOT:
22+
23+
+ DEPRECATE(plot): `show` argument in plot methods & functions; dropped completely
24+
from the args of the younger class :class:`Plotter`.
25+
26+
It has merged with `filename` param (the later takes precedence if both given).
27+
+ ENH: apply more styles on data-nodes; distinguish between Prune/Cancel/Evict
28+
data Styles and add tooltips for those cases (ie data nodes without values).
29+
30+
+ DROP: do not plot wth ``splines=ortho``, because it `crashes with some shapes
31+
<https://gitlab.com/graphviz/graphviz/issues/1408>`_;
32+
explain in docs how to re-enables this (x2 ways).
33+
+ FIX: node/edge attributes were ignored due to `networkx` API misuse - add TCs
34+
on that.
35+
+ FIX: Networks were not plotting Inps/Outs/Name due to forgotten ``namedtuple._replace()``
36+
assignment.
37+
+ feat: introduce ``_no_plot`` nx-attribute to filter out nodes/edges.
38+
2339
+ ENH(base): improve auto-naming of operations, descending *partials* politely and
2440
handling better builtins.
25-
+ DEPRECATE(plot): `show` argument in plot methods & functions; dropped completely
26-
from the args of the younger class :class:`Plotter`.
2741

28-
It has merged with `filename` param (the later takes precedence if both given).
42+
+ FEAT(net): add :meth:`.Network.find_ops()` & :meth:`.Network.find_op_by_name()`
43+
utility methods.
44+
45+
+ enh(build, site, doc): graft Build Ver/Date as gotten from Git in PyPilanding-page.
2946

3047

3148
v6.1.0 (14 Apr 2020, @ankostis): config plugs & fix styles

graphtik/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Licensed under the terms of the Apache License, Version 2.0. See the LICENSE file associated with the project for terms.
33
"""Lightweight :term:`computation` graphs for Python."""
44

5-
__version__ = "6.1.0"
6-
__release_date__ = "14 Apr 2020, 20:00"
5+
__version__ = "6.2.0"
6+
__release_date__ = "19 Apr 2020, 14:03"
77
__title__ = "graphtik"
88
__summary__ = __doc__.splitlines()[0]
99
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)