File tree Expand file tree Collapse file tree 4 files changed +16
-2
lines changed Expand file tree Collapse file tree 4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 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
7190.12 (2019-02-22)
Original file line number Diff line number Diff line change 1- .. _ python_api :
1+ .. _ cli :
22
33================================
44 sqlite-utils command-line tool
Original file line number Diff line number Diff line change @@ -182,6 +182,8 @@ Note that the ``pk`` and ``column_order`` parameters here are optional if you ar
182182
183183An `` upsert_all()`` method is also available, which behaves like `` insert_all()`` but performs upserts instead.
184184
185+ .. _python_api_hash:
186+
185187Setting an ID based on the hash of the row contents
186188================================================== =
187189
Original file line number Diff line number Diff line change 22import io
33import os
44
5- VERSION = "0.12 "
5+ VERSION = "0.13 "
66
77
88def get_long_description ():
You can’t perform that action at this time.
0 commit comments