Skip to content

Commit 0d45ee1

Browse files
committed
Release 3.30
Refs #480, #483, #485, #495, #500, #502, #504
1 parent defa297 commit 0d45ee1

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

docs/changelog.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@
44
Changelog
55
===========
66

7+
.. _v3_30:
8+
9+
3.30 (2022-10-25)
10+
-----------------
11+
12+
- Now tested against Python 3.11. (:issue:`502`)
13+
- New ``table.search_sql(include_rank=True)`` option, which adds a ``rank`` column to the generated SQL. Thanks, Jacob Chapman. (`#480 <https://github.com/simonw/sqlite-utils/pull/480>`__)
14+
- Progress bars now display for newline-delimited JSON files using the ``--nl`` option. Thanks, Mischa Untaga. (:issue:`485`)
15+
- New ``db.close()`` method. (:issue:`504`)
16+
- Conversion functions passed to :ref:`table.convert(...) <python_api_convert>` can now return lists or dictionaries, which will be inserted into the database as JSON strings. (:issue:`495`)
17+
- ``sqlite-utils install`` and ``sqlite-utils uninstall`` commands for installing packages into the same virtual environment as ``sqlite-utils``, :ref:`described here <cli_install>`. (:issue:`483`)
18+
- New :ref:`sqlite_utils.utils.flatten() <reference_utils_flatten>` utility function. (:issue:`500`)
19+
- Documentation on :ref:`using Just <contributing_just>` to run tests, linters and build documentation.
20+
- Documentation now covers the :ref:`release_process` for this package.
21+
722
.. _v3_29:
823

924
3.29 (2022-08-27)

docs/contributing.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ Both commands can then be run in the root of the project like this::
7979

8080
All three of these tools are run by our CI mechanism against every commit and pull request.
8181

82+
.. _contributing_just:
83+
8284
Using Just and pipenv
8385
=====================
8486

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import io
33
import os
44

5-
VERSION = "3.29"
5+
VERSION = "3.30"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)