diff --git a/docs/changelog.rst b/docs/changelog.rst index 4fab081..8a893a3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 `__) +- ``table.last_pk`` is now only available for inserts or upserts of a single record. (`#98 `__) +- New ``Database(filepath, recreate=True)`` parameter for deleting and recreating the database. (`#97 `__) + .. _v2_4_4: 2.4.4 (2020-03-23) diff --git a/setup.py b/setup.py index 39bce69..3bec907 100644 --- a/setup.py +++ b/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():