Release 0.13

This commit is contained in:
Simon Willison 2019-02-23 22:54:43 -08:00
commit 1b6025e8ab
4 changed files with 16 additions and 2 deletions

View file

@ -2,6 +2,18 @@
Changelog
===========
.. _v0_13:
0.13 (2019-02-23)
-----------------
- New ``--table`` and ``--fmt`` options can be used to output query results in a variety of visual table formats, see :ref:`cli_query_table`
- New ``hash_id=`` argument can now be used for :ref:`python_api_hash`
- Can now derive correct column types for numpy int, uint and float values
- ``table.last_id`` has been renamed to ``table.last_rowid``
- ``table.last_pk`` now contains the last inserted primary key, if ``pk=`` was specified
- Prettier indentation in the ``CREATE TABLE`` generated schemas
.. _v0_12:
0.12 (2019-02-22)

View file

@ -1,4 +1,4 @@
.. _python_api:
.. _cli:
================================
sqlite-utils command-line tool

View file

@ -182,6 +182,8 @@ Note that the ``pk`` and ``column_order`` parameters here are optional if you ar
An ``upsert_all()`` method is also available, which behaves like ``insert_all()`` but performs upserts instead.
.. _python_api_hash:
Setting an ID based on the hash of the row contents
===================================================

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import io
import os
VERSION = "0.12"
VERSION = "0.13"
def get_long_description():