Skip to content

Commit 2d0d548

Browse files
committed
chore(VER) bump v9.1.0=>v9.2.0; CHANGES
1 parent 3900858 commit 2d0d548

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ Changelog
7777
%%%%%%%%%
7878

7979

80+
v9.2.0 (4 Jul 2020, @ankostis): Drop MultiValueError
81+
====================================================
82+
Delayed raising of needs errors hindered debug.
83+
8084
v9.1.0 (4 Jul 2020, @ankostis): Bugfix, panda-polite, privatize modifier fields
8185
===============================================================================
8286
- BREAK(modifier): privatize all :class:`._Modifier` properties; it is uncanny

graphtik/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
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__ = "9.1.0"
6-
__release_date__ = "4 Jul 2020, 2:54"
5+
__version__ = "9.2.0"
6+
__release_date__ = "4 Jul 2020, 10:16"
77
__title__ = "graphtik"
88
__summary__ = __doc__.splitlines()[0]
99
__license__ = "Apache-2.0"
1010
__uri__ = "https://github.com/pygraphkit/graphtik"
1111
__author__ = "hnguyen, ankostis" # chronologically ordered
1212

1313

14-
from .base import AbortedException, IncompleteExecutionError, MultiValueError
14+
from .base import AbortedException, IncompleteExecutionError
1515
from .modifier import (
1616
accessor,
1717
jsonp,

0 commit comments

Comments
 (0)