From 2322a075562f8256487ded97bdb3559ffb878eb3 Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Mon, 4 Mar 2024 12:02:01 +0000 Subject: [PATCH] bumped version --- CHANGES.rst | 14 ++++++++++++++ piccolo/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index e30974b3d..dbfae8610 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,20 @@ Changes ======= +1.3.2 +----- + +Fixed a bug with nested array columns containing ``BigInt``. For example: + +.. code-block:: python + + class MyTable(Table): + my_column = Array(Array(BigInt)) + +Thanks to @AmazingAkai for reporting this issue. + +------------------------------------------------------------------------------- + 1.3.1 ----- diff --git a/piccolo/__init__.py b/piccolo/__init__.py index 579e98fd8..922bcbf79 100644 --- a/piccolo/__init__.py +++ b/piccolo/__init__.py @@ -1 +1 @@ -__VERSION__ = "1.3.1" +__VERSION__ = "1.3.2"