Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed May 31, 2024
1 parent 9f1a4d8 commit a45369b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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
-----

Expand Down
2 changes: 1 addition & 1 deletion piccolo/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "1.6.0"
__VERSION__ = "1.7.0"

0 comments on commit a45369b

Please sign in to comment.