mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
parent
729a3e7869
commit
ad6ac19470
2 changed files with 10 additions and 1 deletions
|
|
@ -2,6 +2,15 @@
|
|||
Changelog
|
||||
===========
|
||||
|
||||
.. _v2_5:
|
||||
|
||||
2.5 (2020-04-12)
|
||||
---------------
|
||||
|
||||
- Panda's Timestamp is now stored as a SQLite TEXT column. Thanks, b0b5h4rp13! (`#96 <https://github.com/simonw/sqlite-utils/issues/96>`__)
|
||||
- ``table.last_pk`` is now only available for inserts or upserts of a single record. (`#98 <https://github.com/simonw/sqlite-utils/issues/98>`__)
|
||||
- New ``Database(filepath, recreate=True)`` parameter for deleting and recreating the database. (`#97 <https://github.com/simonw/sqlite-utils/issues/97>`__)
|
||||
|
||||
.. _v2_4_4:
|
||||
|
||||
2.4.4 (2020-03-23)
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||
import io
|
||||
import os
|
||||
|
||||
VERSION = "2.4.4"
|
||||
VERSION = "2.5"
|
||||
|
||||
|
||||
def get_long_description():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue