Skip to content

Commit a216e9e

Browse files
committed
chore(VER): bumpr v8.3.1 --> v8.4.0
1 parent 801f8e6 commit a216e9e

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGES.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,20 @@ Changelog
9090
%%%%%%%%%
9191

9292

93+
v8.4.0 (15 May 2020, @ankostis): subclass-able Op, plot edges from south-->north of nodes
94+
=========================================================================================
95+
+ ENH(pipe): nest all Ops (not just FnOps), dropping ``FunctionalOperation``
96+
dependency in network code, to **allow for further sub-classing** :class:`Operation`.
97+
+ FIX(pipeline): due to a side-effect on a ``kw`` dictionary, it was mixing the attributes
98+
of earlier operations into later ones while merging them into pipelines.
99+
+ REFACT(solution): facilitate inheriting Solution by extracting :meth:`
100+
.Solution._update_op_outs` into a separate method.
101+
+ refact(pipe): move `build_net()` --> back to `pipeline` module,
102+
dropping further network.py-->pipeline.py mod-dep.
103+
+ enh(plot): StyleStack-ize data-io shape selection into separate theme-able dicts.
104+
+ DOC(exe, plotting): task-context section in Debugger
105+
106+
93107
v8.3.1 (14 May 2020, @ankostis): plot edges from south-->north of nodes
94108
=======================================================================
95109
+ ENH(plot): have all the link-edges between data and operations route out and into

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__ = "8.3.1"
6-
__release_date__ = "14 May 2020, 00:50"
5+
__version__ = "8.4.0"
6+
__release_date__ = "15 May 2020, 00:20"
77
__title__ = "graphtik"
88
__summary__ = __doc__.splitlines()[0]
99
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)