From 07cf36a05165747ef286be07868379aa8da1b489 Mon Sep 17 00:00:00 2001 From: anjakefala Date: Sun, 6 Dec 2020 21:34:27 -0800 Subject: [PATCH] [docs] update docs --- CHANGELOG.md | 2 +- docs/api/options.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73aa07186..726bcb09a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,6 @@ - [expr] allow column attributes as variables (thanks @frosencrantz for feature request #659) - [freq] change `numeric_binning` back to False by default - [input] Shift+Arrow within `edit-cell` to move cursor and re-enter edit mode - - [loaders clickhouse] add clickhouse loader - [loaders http] have automatic API pagination (thanks @geekscrapy for feature request #480) - [loaders json] improve loading speedup 50% (thanks @lxcode for investigating and pointing this out #765) - this makes JSON saving non-deterministic in Python 3.6, as the order of fields output is dependent on the order within the dict @@ -110,6 +109,7 @@ ## Plugins - add conll loader to **PluginsSheet** (thanks @polm) - remove livesearch +- add clickhouse loader ## Commands - if `options.some_selected_rows` is True, `setcol-expr`, `setcol-iter`, `setcol-subst`, `setcol-subst`, `setcol-subst-all` will return all rows, if none selected diff --git a/docs/api/options.rst b/docs/api/options.rst index 03c9c4964..50d165927 100644 --- a/docs/api/options.rst +++ b/docs/api/options.rst @@ -67,6 +67,7 @@ Options API .. autofunction:: visidata.vd.options.get .. autofunction:: visidata.vd.options.set .. autofunction:: visidata.vd.options.unset +.. versionadded:: 2.1 .. autofunction:: visidata.vd.options.getall The dict returned by ``options.getall('foo_')`` is designed to be used as kwargs to other loaders, so that their options can be passed through VisiData transparently.