Skip to content

Commit 1b6025e

Browse files
committed
Release 0.13
1 parent 10e3aab commit 1b6025e

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

docs/changelog.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
Changelog
33
===========
44

5+
.. _v0_13:
6+
7+
0.13 (2019-02-23)
8+
-----------------
9+
10+
- New ``--table`` and ``--fmt`` options can be used to output query results in a variety of visual table formats, see :ref:`cli_query_table`
11+
- New ``hash_id=`` argument can now be used for :ref:`python_api_hash`
12+
- Can now derive correct column types for numpy int, uint and float values
13+
- ``table.last_id`` has been renamed to ``table.last_rowid``
14+
- ``table.last_pk`` now contains the last inserted primary key, if ``pk=`` was specified
15+
- Prettier indentation in the ``CREATE TABLE`` generated schemas
16+
517
.. _v0_12:
618

719
0.12 (2019-02-22)

docs/cli.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _python_api:
1+
.. _cli:
22

33
================================
44
sqlite-utils command-line tool

docs/python-api.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,8 @@ Note that the ``pk`` and ``column_order`` parameters here are optional if you ar
182182
183183
An ``upsert_all()`` method is also available, which behaves like ``insert_all()`` but performs upserts instead.
184184
185+
.. _python_api_hash:
186+
185187
Setting an ID based on the hash of the row contents
186188
===================================================
187189

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 = "0.12"
5+
VERSION = "0.13"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)