Skip to content

Commit a45369b

Browse files
committed
bumped version
1 parent 9f1a4d8 commit a45369b

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGES.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
Changes
22
=======
33

4+
1.7.0
5+
-----
6+
7+
Arrays of date / time / timestamps now work in SQLite.
8+
9+
For example:
10+
11+
.. code-block:: python
12+
13+
class MyTable(Table):
14+
times = Array(Time())
15+
dates = Array(Date())
16+
timestamps = Array(Timestamp())
17+
timestamps_tz = Array(Timestamptz())
18+
19+
-------------------------------------------------------------------------------
20+
421
1.6.0
522
-----
623

piccolo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__VERSION__ = "1.6.0"
1+
__VERSION__ = "1.7.0"

0 commit comments

Comments
 (0)