diff --git a/CHANGES.rst b/CHANGES.rst index fbdbec34e..c6c515a3d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,23 @@ Changes ======= +1.7.0 +----- + +Arrays of date / time / timestamps now work in SQLite. + +For example: + +.. code-block:: python + + class MyTable(Table): + times = Array(Time()) + dates = Array(Date()) + timestamps = Array(Timestamp()) + timestamps_tz = Array(Timestamptz()) + +------------------------------------------------------------------------------- + 1.6.0 ----- diff --git a/piccolo/__init__.py b/piccolo/__init__.py index bb270431a..64888e7c6 100644 --- a/piccolo/__init__.py +++ b/piccolo/__init__.py @@ -1 +1 @@ -__VERSION__ = "1.6.0" +__VERSION__ = "1.7.0"