Skip to content

Commit 3a58731

Browse files
committed
Prep for v0.5.0 release
1 parent e278470 commit 3a58731

File tree

5 files changed

+35
-1
lines changed

5 files changed

+35
-1
lines changed

docs/_sources/whatsnew.rst.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ What's New
44

55
This document outlines features and improvements from each release.
66

7+
v0.5.0 - December 8, 2022 (**API CHANGES**)
8+
-------------------------------------------
9+
* **Query parameter syntax has changed from ``:1`` for positional
10+
and ``:key`` for dictionary keys to ``%s`` for positional and ``%(key)s``
11+
for dictionary keys**
12+
* **``results_format`` connection parameter has changed to ``results_type``**
13+
* High-performance C extension added
14+
* Added ``ssl_verify_cert`` and ``ssl_verify_identity`` connection options
15+
* Python 3.11 support
16+
717
v0.4.0 - October 19, 2022
818
-------------------------
919
* Add Python 3.6 support

docs/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ <h1>SingleStoreDB Python Client<a class="headerlink" href="#singlestoredb-python
9191
<ul>
9292
<li class="toctree-l1"><a class="reference internal" href="install.html">Installation</a></li>
9393
<li class="toctree-l1"><a class="reference internal" href="whatsnew.html">What’s New</a><ul>
94+
<li class="toctree-l2"><a class="reference internal" href="whatsnew.html#v0-5-0-december-8-2022-api-changes">v0.5.0 - December 8, 2022 (<strong>API CHANGES</strong>)</a></li>
9495
<li class="toctree-l2"><a class="reference internal" href="whatsnew.html#v0-4-0-october-19-2022">v0.4.0 - October 19, 2022</a></li>
9596
<li class="toctree-l2"><a class="reference internal" href="whatsnew.html#v0-3-3-september-21-2022">v0.3.3 - September 21, 2022</a></li>
9697
<li class="toctree-l2"><a class="reference internal" href="whatsnew.html#v0-3-2-september-14-2022">v0.3.2 - September 14, 2022</a></li>

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/src/whatsnew.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ What's New
44

55
This document outlines features and improvements from each release.
66

7+
v0.5.0 - December 8, 2022 (**API CHANGES**)
8+
-------------------------------------------
9+
* **Query parameter syntax has changed from ``:1`` for positional
10+
and ``:key`` for dictionary keys to ``%s`` for positional and ``%(key)s``
11+
for dictionary keys**
12+
* **``results_format`` connection parameter has changed to ``results_type``**
13+
* High-performance C extension added
14+
* Added ``ssl_verify_cert`` and ``ssl_verify_identity`` connection options
15+
* Python 3.11 support
16+
717
v0.4.0 - October 19, 2022
818
-------------------------
919
* Add Python 3.6 support

docs/whatsnew.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
<ul class="current">
4646
<li class="toctree-l1"><a class="reference internal" href="install.html">Installation</a></li>
4747
<li class="toctree-l1 current"><a class="current reference internal" href="#">What’s New</a><ul>
48+
<li class="toctree-l2"><a class="reference internal" href="#v0-5-0-december-8-2022-api-changes">v0.5.0 - December 8, 2022 (<strong>API CHANGES</strong>)</a></li>
4849
<li class="toctree-l2"><a class="reference internal" href="#v0-4-0-october-19-2022">v0.4.0 - October 19, 2022</a></li>
4950
<li class="toctree-l2"><a class="reference internal" href="#v0-3-3-september-21-2022">v0.3.3 - September 21, 2022</a></li>
5051
<li class="toctree-l2"><a class="reference internal" href="#v0-3-2-september-14-2022">v0.3.2 - September 14, 2022</a></li>
@@ -86,6 +87,18 @@
8687
<section id="what-s-new">
8788
<h1>What’s New<a class="headerlink" href="#what-s-new" title="Permalink to this headline"></a></h1>
8889
<p>This document outlines features and improvements from each release.</p>
90+
<section id="v0-5-0-december-8-2022-api-changes">
91+
<h2>v0.5.0 - December 8, 2022 (<strong>API CHANGES</strong>)<a class="headerlink" href="#v0-5-0-december-8-2022-api-changes" title="Permalink to this headline"></a></h2>
92+
<ul class="simple">
93+
<li><p><strong>Query parameter syntax has changed from ``:1`` for positional
94+
and ``:key`` for dictionary keys to ``%s`` for positional and ``%(key)s``
95+
for dictionary keys</strong></p></li>
96+
<li><p><strong>``results_format`` connection parameter has changed to ``results_type``</strong></p></li>
97+
<li><p>High-performance C extension added</p></li>
98+
<li><p>Added <code class="docutils literal notranslate"><span class="pre">ssl_verify_cert</span></code> and <code class="docutils literal notranslate"><span class="pre">ssl_verify_identity</span></code> connection options</p></li>
99+
<li><p>Python 3.11 support</p></li>
100+
</ul>
101+
</section>
89102
<section id="v0-4-0-october-19-2022">
90103
<h2>v0.4.0 - October 19, 2022<a class="headerlink" href="#v0-4-0-october-19-2022" title="Permalink to this headline"></a></h2>
91104
<ul class="simple">

0 commit comments

Comments
 (0)