Skip to content

Commit 73793b2

Browse files
committed
chore(VER): bump v8.1.0-->v8.2.0; CHANGES
1 parent 08a47b5 commit 73793b2

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGES.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Graphtik Changelog
3636
- [+] Rename NetOp -> pipelines;
3737
cannot unify compose() -> Pipeline class due to `nest` arg.
3838

39-
- [ ] Function access executing Operation & Plan from its context.
39+
- [+] Function access executing Operation & Plan from its context.
4040
- [ ] Unify OpTask & FuncOp
4141
- [ ] function self-toggles `returns-dict` amidst execution.
4242
- [ ] break cycles with dijkstra; weights
@@ -88,6 +88,12 @@ Changelog
8888
%%%%%%%%%
8989

9090

91+
v8.2.0 (11 May 2020, @ankostis): custom Solutions, Task-context
92+
===============================================================
93+
+ FEAT(exe): ``compute()`` supports custom Solution classes.
94+
+ FEAT(exe): underlying functions gain access to wrapping Operation with :data:`.execution.task_context`.
95+
96+
9197
v8.1.0 (11 May 2020, @ankostis): drop last plan, Rename/Nest, Netop-->Pipeline, purify modules
9298
==============================================================================================
9399
+ DROP(pipeline): After solution class was introduced, ``last_plan`` attribute was redundant.

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.1.0"
6-
__release_date__ = "11 May 2020, 02:24"
5+
__version__ = "8.2.0"
6+
__release_date__ = "11 May 2020, 20:27"
77
__title__ = "graphtik"
88
__summary__ = __doc__.splitlines()[0]
99
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)