Skip to content

Commit b7b73e8

Browse files
committed
chore(VER) bump v9.0.0=>v9.1.0; CHANGES
1 parent 9c3f18a commit b7b73e8

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

CHANGES.rst

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,29 @@ Changelog
7777
%%%%%%%%%
7878

7979

80+
v9.1.0 (4 Jul 2020, @ankostis): Bugfix, panda-polite, privatize modifier fields
81+
===============================================================================
82+
- BREAK(modifier): privatize all :class:`._Modifier` properties; it is uncanny
83+
for a str to have more public attributes.
84+
- fix: avoid equality checks on results, to avoid pandas notorious
85+
"The truth value of a Series/DataFrame is ambiguous."
86+
- break(plot): Rename theme property ``include_steps => show_steps``.
87+
- feat(plot): new theme property ``show_chaindocs`` by default false,
88+
that when enabled, plots all nodes in the subdoc hierarchy (even if those
89+
not used as deps), like this::
90+
91+
pipeline.plot(theme={"show_chaindocs": True})
92+
93+
- fix(plot): returns-dictionary op-badge had broken url.
94+
95+
8096
v9.0.0 (30 Jun 2020, @ankostis): JSONP; net, evictions & sfxed fixes; conveyor fn; rename modules
8197
=================================================================================================
8298
+ FEAT(modifier): Dependencies with :term:`json pointer path` that can read/write
8399
:term:`subdoc`\s (e.g. nested dicts & pandas).
84100

85101
+ feat(config): added :func:`set_layered_solution()` into :term:`configurations`
86-
which when True (or *jsnops* in the network if None (default)) all results
102+
which when True (or *jsonps* in the network if None (default)) all results
87103
are stored in the given inputs to the pipeline
88104
(this may become the regular behavior in the future).
89105
+ feat(modifier, solution): +modifier with accessor functions to read/write Solution.

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__ = "9.0.0"
6-
__release_date__ = "30 Jun 2020, 19:38"
5+
__version__ = "9.1.0"
6+
__release_date__ = "4 Jul 2020, 2:54"
77
__title__ = "graphtik"
88
__summary__ = __doc__.splitlines()[0]
99
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)