mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
parent
69a121e088
commit
1ce96d8c08
2 changed files with 10 additions and 1 deletions
|
|
@ -2,6 +2,15 @@
|
|||
Changelog
|
||||
===========
|
||||
|
||||
.. _v3_1:
|
||||
|
||||
3.1 (2020-12-12)
|
||||
----------------
|
||||
|
||||
- New command: ``sqlite-utils analyze-tables my.db`` outputs useful information about the table columns in the database, such as the number of distinct values and how many rows are null. See :ref:`cli_analyze_tables` for documentation. (`#207 <https://github.com/simonw/sqlite-utils/issues/207>`__)
|
||||
- New ``table.analyze_column(column)`` Python method used by the ``analyze-tables`` command - see :ref:`python_api_analyze_column`.
|
||||
- The ``table.update()`` method now correctly handles values that should be stored as JSON. Thanks, Andreas Madsack. (`#204 <https://github.com/simonw/sqlite-utils/pull/204>`__)
|
||||
|
||||
.. _v3_0:
|
||||
|
||||
3.0 (2020-11-08)
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||
import io
|
||||
import os
|
||||
|
||||
VERSION = "3.0"
|
||||
VERSION = "3.1"
|
||||
|
||||
|
||||
def get_long_description():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue