This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new ce35e23  publish documentation
ce35e23 is described below

commit ce35e23bfa9b898ef92d5efb0b05c65eb9362a79
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Jan 10 19:41:26 2023 +0000

    publish documentation
---
 main/_sources/development/releasing.rst.txt | 73 +++++++++++++++++++++++
 main/_sources/index.rst.txt                 |  2 +-
 main/cpp/api/adbc.html                      |  2 +-
 main/cpp/api/adbc_driver_manager.html       |  2 +-
 main/cpp/api/index.html                     |  2 +-
 main/cpp/concurrency.html                   |  2 +-
 main/cpp/driver_manager.html                |  2 +-
 main/cpp/index.html                         |  2 +-
 main/development/contributing.html          |  2 +-
 main/development/nightly.html               |  2 +-
 main/development/releasing.html             | 92 ++++++++++++++++++++++++++++-
 main/driver/cpp/features.html               |  2 +-
 main/driver/cpp/flight_sql.html             |  2 +-
 main/driver/cpp/index.html                  |  2 +-
 main/driver/cpp/postgresql.html             |  2 +-
 main/driver/cpp/sqlite.html                 |  2 +-
 main/driver/java/flight_sql.html            |  2 +-
 main/driver/java/index.html                 |  2 +-
 main/driver/java/jdbc.html                  |  2 +-
 main/format/comparison.html                 |  2 +-
 main/format/specification.html              |  2 +-
 main/format/versioning.html                 |  2 +-
 main/genindex.html                          |  2 +-
 main/go/index.html                          |  2 +-
 main/index.html                             |  4 +-
 main/java/index.html                        |  2 +-
 main/py-modindex.html                       |  2 +-
 main/python/api/adbc_driver_manager.html    |  2 +-
 main/python/api/adbc_driver_postgresql.html |  2 +-
 main/python/api/adbc_driver_sqlite.html     |  2 +-
 main/python/api/index.html                  |  2 +-
 main/python/driver_manager.html             |  2 +-
 main/python/index.html                      |  2 +-
 main/python/quickstart.html                 |  2 +-
 main/search.html                            |  2 +-
 main/searchindex.js                         |  2 +-
 36 files changed, 198 insertions(+), 37 deletions(-)

diff --git a/main/_sources/development/releasing.rst.txt 
b/main/_sources/development/releasing.rst.txt
index 7c9d6e1..dd0126b 100644
--- a/main/_sources/development/releasing.rst.txt
+++ b/main/_sources/development/releasing.rst.txt
@@ -185,6 +185,79 @@ Voting and approval
 Start the vote thread on [email protected] and supply instructions for 
verifying the integrity of the release.
 Approval requires a net of 3 +1 votes from PMC members. A release cannot be 
vetoed.
 
+How to Verify Release Candidates
+--------------------------------
+
+#. Install dependencies. If you are not using Conda (see below), you will need 
to install all dependencies to build and verify all languages. Either way, at 
minimum, you will need:
+
+   - cURL
+   - Docker (to verify binaries)
+   - Git
+   - GnuPG
+   - shasum (built into macOS) or sha256sum/sha512sum (on Linux)
+
+   If not using Conda, you will need roughly:
+
+   - C and C++ compilers (or the equivalent of ``build-essential`` for your 
platform)
+   - Python 3
+   - Ruby with headers
+   - bundler, rake, red-arrow, and test-unit Ruby gems
+   - GLib and gobject-introspection with headers
+   - Java JRE and JDK (Java 8+)
+   - Go
+   - CMake, ninja-build, libpq (with headers), SQLite (with headers)
+
+#. Download the source archive from dist.apache.org. A link to the source 
release is given in the vote email::
+
+     $ wget 
https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-adbc-0.1.0-rc6/apache-arrow-adbc-0.1.0.tar.gz
+
+#. If you wish to verify the GPG signature and checksums well (the script will 
also verify these):
+
+   #. Download the signature and hash files::
+
+        $ wget 
https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-adbc-0.1.0-rc6/apache-arrow-adbc-0.1.0.tar.gz.{asc,sha256,sha512}
+
+   #. Verify the signature::
+
+        $ gpg --verify apache-arrow-adbc-0.1.0.tar.gz.asc
+
+      You may have to import the maintainer keys first::
+
+        $ wget https://dist.apache.org/repos/dist/release/arrow/KEYS
+        $ gpg --import KEYS
+   #. Verify the checksums::
+
+        # For Linux
+        $ sha256sum -c apache-arrow-adbc-0.1.0.tar.gz.sha256
+        $ sha512sum -c apache-arrow-adbc-0.1.0.tar.gz.sha512
+
+        # For macOS
+        $ shashum -a 256 -c apache-arrow-adbc-0.1.0.tar.gz.sha256
+        $ shashum -a 512 -c apache-arrow-adbc-0.1.0.tar.gz.sha512
+
+#. Extract the archive::
+
+     $ tar xf apache-arrow-adbc-0.1.0.tar.gz
+#. Run the verification script::
+
+     $ cd apache-arrow-adbc-0.1.0-rc6
+     # Pass the version and the RC number
+     $ ./dev/release/verify-release-candidate.sh 0.1.0 6
+
+   You will have to install any system dependencies required
+   (e.g. CMake, libpq, Go, ...).  These environment variables may be helpful:
+
+   - ``ARROW_TMPDIR=path/to/directory`` to specify the temporary
+     directory used.  Using a fixed directory can help avoid repeating
+     the same setup and build steps if the script has to be run
+     multiple times.
+   - ``USE_CONDA=1`` to download and set up Conda for dependencies.
+     In this case, fewer dependencies are required from the system.
+     (Git, GnuPG, cURL, and some others are still required.)
+
+#. Once finished and once the script passes, reply to the mailing list
+   vote thread with a +1 or a -1.
+
 Post-release tasks
 ==================
 
diff --git a/main/_sources/index.rst.txt b/main/_sources/index.rst.txt
index a0c558a..30539cc 100644
--- a/main/_sources/index.rst.txt
+++ b/main/_sources/index.rst.txt
@@ -65,7 +65,7 @@ Arrow-native database protocols.
 
 .. toctree::
    :maxdepth: 1
-   :caption: Development:
+   :caption: Development
 
    development/contributing
    development/nightly
diff --git a/main/cpp/api/adbc.html b/main/cpp/api/adbc.html
index 6ee0e01..7aa9c36 100644
--- a/main/cpp/api/adbc.html
+++ b/main/cpp/api/adbc.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/cpp/api/adbc_driver_manager.html 
b/main/cpp/api/adbc_driver_manager.html
index 8119f4c..3f5e5d2 100644
--- a/main/cpp/api/adbc_driver_manager.html
+++ b/main/cpp/api/adbc_driver_manager.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/cpp/api/index.html b/main/cpp/api/index.html
index 134b950..c69b720 100644
--- a/main/cpp/api/index.html
+++ b/main/cpp/api/index.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/cpp/concurrency.html b/main/cpp/concurrency.html
index d48d1f2..670ffe0 100644
--- a/main/cpp/concurrency.html
+++ b/main/cpp/concurrency.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/cpp/driver_manager.html b/main/cpp/driver_manager.html
index c19c738..caa3cb5 100644
--- a/main/cpp/driver_manager.html
+++ b/main/cpp/driver_manager.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/cpp/index.html b/main/cpp/index.html
index f96ef8f..6f902c9 100644
--- a/main/cpp/index.html
+++ b/main/cpp/index.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/development/contributing.html 
b/main/development/contributing.html
index ead55ca..eab1a13 100644
--- a/main/development/contributing.html
+++ b/main/development/contributing.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul class="current">
 <li class="toctree-l1 current current-page"><a class="current reference 
internal" href="#">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="nightly.html">Nightly Packages</a></li>
diff --git a/main/development/nightly.html b/main/development/nightly.html
index 2bff3f9..5481b9d 100644
--- a/main/development/nightly.html
+++ b/main/development/nightly.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul class="current">
 <li class="toctree-l1"><a class="reference internal" 
href="contributing.html">Contributing</a></li>
 <li class="toctree-l1 current current-page"><a class="current reference 
internal" href="#">Nightly Packages</a></li>
diff --git a/main/development/releasing.html b/main/development/releasing.html
index 91d0af9..fac9615 100644
--- a/main/development/releasing.html
+++ b/main/development/releasing.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul class="current">
 <li class="toctree-l1"><a class="reference internal" 
href="contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="nightly.html">Nightly Packages</a></li>
@@ -470,6 +470,91 @@ Follow up Release Candidates</label><div 
class="sd-tab-content docutils">
 <h2>Voting and approval<a class="headerlink" href="#voting-and-approval" 
title="Permalink to this heading">#</a></h2>
 <p>Start the vote thread on <a class="reference external" 
href="mailto:dev&#37;&#52;&#48;arrow&#46;apache&#46;org";>dev<span>&#64;</span>arrow<span>&#46;</span>apache<span>&#46;</span>org</a>
 and supply instructions for verifying the integrity of the release.
 Approval requires a net of 3 +1 votes from PMC members. A release cannot be 
vetoed.</p>
+<section id="how-to-verify-release-candidates">
+<h3>How to Verify Release Candidates<a class="headerlink" 
href="#how-to-verify-release-candidates" title="Permalink to this 
heading">#</a></h3>
+<ol class="arabic">
+<li><p>Install dependencies. If you are not using Conda (see below), you will 
need to install all dependencies to build and verify all languages. Either way, 
at minimum, you will need:</p>
+<ul class="simple">
+<li><p>cURL</p></li>
+<li><p>Docker (to verify binaries)</p></li>
+<li><p>Git</p></li>
+<li><p>GnuPG</p></li>
+<li><p>shasum (built into macOS) or sha256sum/sha512sum (on Linux)</p></li>
+</ul>
+<p>If not using Conda, you will need roughly:</p>
+<ul class="simple">
+<li><p>C and C++ compilers (or the equivalent of <code class="docutils literal 
notranslate"><span class="pre">build-essential</span></code> for your 
platform)</p></li>
+<li><p>Python 3</p></li>
+<li><p>Ruby with headers</p></li>
+<li><p>bundler, rake, red-arrow, and test-unit Ruby gems</p></li>
+<li><p>GLib and gobject-introspection with headers</p></li>
+<li><p>Java JRE and JDK (Java 8+)</p></li>
+<li><p>Go</p></li>
+<li><p>CMake, ninja-build, libpq (with headers), SQLite (with headers)</p></li>
+</ul>
+</li>
+<li><p>Download the source archive from dist.apache.org. A link to the source 
release is given in the vote email:</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>$ wget 
https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-adbc-0.1.0-rc6/apache-arrow-adbc-0.1.0.tar.gz
+</pre></div>
+</div>
+</li>
+<li><p>If you wish to verify the GPG signature and checksums well (the script 
will also verify these):</p>
+<ol class="arabic">
+<li><p>Download the signature and hash files:</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>$ wget 
https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-adbc-0.1.0-rc6/apache-arrow-adbc-0.1.0.tar.gz.{asc,sha256,sha512}
+</pre></div>
+</div>
+</li>
+<li><p>Verify the signature:</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>$ gpg --verify 
apache-arrow-adbc-0.1.0.tar.gz.asc
+</pre></div>
+</div>
+<p>You may have to import the maintainer keys first:</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>$ wget 
https://dist.apache.org/repos/dist/release/arrow/KEYS
+$ gpg --import KEYS
+</pre></div>
+</div>
+</li>
+<li><p>Verify the checksums:</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span># For Linux
+$ sha256sum -c apache-arrow-adbc-0.1.0.tar.gz.sha256
+$ sha512sum -c apache-arrow-adbc-0.1.0.tar.gz.sha512
+
+# For macOS
+$ shashum -a 256 -c apache-arrow-adbc-0.1.0.tar.gz.sha256
+$ shashum -a 512 -c apache-arrow-adbc-0.1.0.tar.gz.sha512
+</pre></div>
+</div>
+</li>
+</ol>
+</li>
+<li><p>Extract the archive:</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>$ tar xf apache-arrow-adbc-0.1.0.tar.gz
+</pre></div>
+</div>
+</li>
+<li><p>Run the verification script:</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>$ cd apache-arrow-adbc-0.1.0-rc6
+# Pass the version and the RC number
+$ ./dev/release/verify-release-candidate.sh 0.1.0 6
+</pre></div>
+</div>
+<p>You will have to install any system dependencies required
+(e.g. CMake, libpq, Go, …).  These environment variables may be helpful:</p>
+<ul class="simple">
+<li><p><code class="docutils literal notranslate"><span 
class="pre">ARROW_TMPDIR=path/to/directory</span></code> to specify the 
temporary
+directory used.  Using a fixed directory can help avoid repeating
+the same setup and build steps if the script has to be run
+multiple times.</p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">USE_CONDA=1</span></code> to download and set up Conda for 
dependencies.
+In this case, fewer dependencies are required from the system.
+(Git, GnuPG, cURL, and some others are still required.)</p></li>
+</ul>
+</li>
+<li><p>Once finished and once the script passes, reply to the mailing list
+vote thread with a +1 or a -1.</p></li>
+</ol>
+</section>
 </section>
 <section id="post-release-tasks">
 <h2>Post-release tasks<a class="headerlink" href="#post-release-tasks" 
title="Permalink to this heading">#</a></h2>
@@ -693,7 +778,10 @@ dev/release/post-07-bump-versions.sh<span class="w"> 
</span>&lt;arrow-dir&gt;<sp
 <li><a class="reference internal" href="#verify-the-release">Verify the 
Release</a></li>
 </ul>
 </li>
-<li><a class="reference internal" href="#voting-and-approval">Voting and 
approval</a></li>
+<li><a class="reference internal" href="#voting-and-approval">Voting and 
approval</a><ul>
+<li><a class="reference internal" href="#how-to-verify-release-candidates">How 
to Verify Release Candidates</a></li>
+</ul>
+</li>
 <li><a class="reference internal" href="#post-release-tasks">Post-release 
tasks</a></li>
 </ul>
 </li>
diff --git a/main/driver/cpp/features.html b/main/driver/cpp/features.html
index 9822160..bc2b4ba 100644
--- a/main/driver/cpp/features.html
+++ b/main/driver/cpp/features.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/driver/cpp/flight_sql.html b/main/driver/cpp/flight_sql.html
index 72a12d3..1eff8d0 100644
--- a/main/driver/cpp/flight_sql.html
+++ b/main/driver/cpp/flight_sql.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/driver/cpp/index.html b/main/driver/cpp/index.html
index d213c55..fc3e4d8 100644
--- a/main/driver/cpp/index.html
+++ b/main/driver/cpp/index.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/driver/cpp/postgresql.html b/main/driver/cpp/postgresql.html
index 7a20be7..4219226 100644
--- a/main/driver/cpp/postgresql.html
+++ b/main/driver/cpp/postgresql.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/driver/cpp/sqlite.html b/main/driver/cpp/sqlite.html
index f1ada82..22f6bc8 100644
--- a/main/driver/cpp/sqlite.html
+++ b/main/driver/cpp/sqlite.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/driver/java/flight_sql.html b/main/driver/java/flight_sql.html
index 4b516aa..4af8333 100644
--- a/main/driver/java/flight_sql.html
+++ b/main/driver/java/flight_sql.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/driver/java/index.html b/main/driver/java/index.html
index dc82440..e16d5cd 100644
--- a/main/driver/java/index.html
+++ b/main/driver/java/index.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/driver/java/jdbc.html b/main/driver/java/jdbc.html
index 7628928..4209727 100644
--- a/main/driver/java/jdbc.html
+++ b/main/driver/java/jdbc.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/format/comparison.html b/main/format/comparison.html
index 31dffcb..abc5074 100644
--- a/main/format/comparison.html
+++ b/main/format/comparison.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/format/specification.html b/main/format/specification.html
index 8bdade9..32b84d8 100644
--- a/main/format/specification.html
+++ b/main/format/specification.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/format/versioning.html b/main/format/versioning.html
index 18aadaf..0022590 100644
--- a/main/format/versioning.html
+++ b/main/format/versioning.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/genindex.html b/main/genindex.html
index 8c0ea64..e7474db 100644
--- a/main/genindex.html
+++ b/main/genindex.html
@@ -271,7 +271,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="development/nightly.html">Nightly Packages</a></li>
diff --git a/main/go/index.html b/main/go/index.html
index ab020d1..e3c9697 100644
--- a/main/go/index.html
+++ b/main/go/index.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/index.html b/main/index.html
index 3c29f69..ff969f8 100644
--- a/main/index.html
+++ b/main/index.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="development/nightly.html">Nightly Packages</a></li>
@@ -375,7 +375,7 @@ Arrow-native database protocols.</p>
 </ul>
 </div>
 <div class="toctree-wrapper compound">
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="development/nightly.html">Nightly Packages</a></li>
diff --git a/main/java/index.html b/main/java/index.html
index 79a89ca..8892345 100644
--- a/main/java/index.html
+++ b/main/java/index.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/py-modindex.html b/main/py-modindex.html
index 2b9e63f..87a3892 100644
--- a/main/py-modindex.html
+++ b/main/py-modindex.html
@@ -271,7 +271,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="development/nightly.html">Nightly Packages</a></li>
diff --git a/main/python/api/adbc_driver_manager.html 
b/main/python/api/adbc_driver_manager.html
index a59afd1..e1ddf77 100644
--- a/main/python/api/adbc_driver_manager.html
+++ b/main/python/api/adbc_driver_manager.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/python/api/adbc_driver_postgresql.html 
b/main/python/api/adbc_driver_postgresql.html
index 6028656..063bcf9 100644
--- a/main/python/api/adbc_driver_postgresql.html
+++ b/main/python/api/adbc_driver_postgresql.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/python/api/adbc_driver_sqlite.html 
b/main/python/api/adbc_driver_sqlite.html
index 24e40cb..454e6b1 100644
--- a/main/python/api/adbc_driver_sqlite.html
+++ b/main/python/api/adbc_driver_sqlite.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/python/api/index.html b/main/python/api/index.html
index 738f5ec..c28f302 100644
--- a/main/python/api/index.html
+++ b/main/python/api/index.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/python/driver_manager.html b/main/python/driver_manager.html
index 8511949..0e21dda 100644
--- a/main/python/driver_manager.html
+++ b/main/python/driver_manager.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/python/index.html b/main/python/index.html
index 7355078..223881a 100644
--- a/main/python/index.html
+++ b/main/python/index.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/python/quickstart.html b/main/python/quickstart.html
index 4f1fb65..efb516f 100644
--- a/main/python/quickstart.html
+++ b/main/python/quickstart.html
@@ -273,7 +273,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="../development/nightly.html">Nightly Packages</a></li>
diff --git a/main/search.html b/main/search.html
index e3f4b44..0adf57b 100644
--- a/main/search.html
+++ b/main/search.html
@@ -270,7 +270,7 @@
 </ul>
 </li>
 </ul>
-<p class="caption" role="heading"><span 
class="caption-text">Development:</span></p>
+<p class="caption" role="heading"><span 
class="caption-text">Development</span></p>
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="development/contributing.html">Contributing</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="development/nightly.html">Nightly Packages</a></li>
diff --git a/main/searchindex.js b/main/searchindex.js
index 09806b8..1786db6 100644
--- a/main/searchindex.js
+++ b/main/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["cpp/api/adbc", "cpp/api/adbc_driver_manager", 
"cpp/api/index", "cpp/concurrency", "cpp/driver_manager", "cpp/index", 
"development/contributing", "development/nightly", "development/releasing", 
"driver/cpp/features", "driver/cpp/flight_sql", "driver/cpp/index", 
"driver/cpp/postgresql", "driver/cpp/sqlite", "driver/java/flight_sql", 
"driver/java/index", "driver/java/jdbc", "format/comparison", 
"format/specification", "format/versioning", "go/index", "index",  [...]
\ No newline at end of file
+Search.setIndex({"docnames": ["cpp/api/adbc", "cpp/api/adbc_driver_manager", 
"cpp/api/index", "cpp/concurrency", "cpp/driver_manager", "cpp/index", 
"development/contributing", "development/nightly", "development/releasing", 
"driver/cpp/features", "driver/cpp/flight_sql", "driver/cpp/index", 
"driver/cpp/postgresql", "driver/cpp/sqlite", "driver/java/flight_sql", 
"driver/java/index", "driver/java/jdbc", "format/comparison", 
"format/specification", "format/versioning", "go/index", "index",  [...]
\ No newline at end of file

Reply via email to