Release 2.5

Refs #96. Refs #98. Closes #97.
This commit is contained in:
Simon Willison 2020-04-12 20:52:19 -07:00
commit ad6ac19470
2 changed files with 10 additions and 1 deletions

View file

@ -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)

View file

@ -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():