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"