Skip to content

Commit 0bfa1cb

Browse files
committed
Prepare for v1.1.0 release
1 parent 1b85030 commit 0bfa1cb

File tree

131 files changed

+1300
-1210
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+1300
-1210
lines changed

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 667482961abe46f8a6654e0e8ccb80a0
3+
config: 61b7c04058a74e2bb257b6d7af9441d6
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_sources/whatsnew.rst.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This document outlines features and improvements from each release.
55
.. note:: All releases before v1.0.0 are considered pre-release and
66
are for non-production testing and evaluation, and may include
77
changes to the API.
8+
v1.1.0 - April, 18 2024
9+
-----------------------
10+
* Added new result types: numpy, pandas, polars, arrow
11+
* Added `SHOW FUSION HELP` command and doc to Fusion SQL handlers
812
v1.0.4 - April, 3 2024
913
----------------------
1014
* Management API updates

docs/_static/basic.css

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -187,6 +187,9 @@ div.body p, div.body dd, div.body li, div.body blockquote {
187187
a.headerlink {
188188
visibility: hidden;
189189
}
190+
a:visited {
191+
color: #551A8B;
192+
}
190193
h1:hover > a.headerlink,
191194
h2:hover > a.headerlink,
192195
h3:hover > a.headerlink,
@@ -533,6 +536,14 @@ dd {
533536
margin-bottom: 10px;
534537
margin-left: 30px;
535538
}
539+
.sig dd {
540+
margin-top: 0px;
541+
margin-bottom: 0px;
542+
}
543+
.sig dl {
544+
margin-top: 0px;
545+
margin-bottom: 0px;
546+
}
536547
dl > dd:last-child,
537548
dl > dd:last-child > :last-child {
538549
margin-bottom: 0;
@@ -587,6 +598,12 @@ abbr, acronym {
587598
border-bottom: dotted 1px;
588599
cursor: help;
589600
}
601+
.translated {
602+
background-color: rgba(207, 255, 207, 0.2)
603+
}
604+
.untranslated {
605+
background-color: rgba(255, 207, 207, 0.2)
606+
}
590607
/* -- code displays --------------------------------------------------------- */
591608
pre {
592609
overflow: auto;

docs/_static/doctools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Base JavaScript utilities for all Sphinx HTML documentation.
66
*
7-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/

docs/_static/documentation_options.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
var DOCUMENTATION_OPTIONS = {
2-
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '1.0.4',
1+
const DOCUMENTATION_OPTIONS = {
2+
VERSION: '1.1.0',
43
LANGUAGE: 'en',
54
COLLAPSE_INDEX: false,
65
BUILDER: 'html',

docs/_static/language_data.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
* This script contains the language-specific data used by searchtools.js,
66
* namely the list of stopwords, stemmer, scorer and splitter.
77
*
8-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8+
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
99
* :license: BSD, see LICENSE for details.
1010
*
1111
*/
1212
var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
13-
/* Non-minified version is copied as a separate JS file, is available */
13+
/* Non-minified version is copied as a separate JS file, if available */
1414
/**
1515
* Porter Stemmer
1616
*/

0 commit comments

Comments
 (0)