From 755580e2f3020d6af214a41634ab2ab6ed776e10 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 14 Mar 2020 13:09:56 -0700 Subject: [PATCH] Release 2.4.2 --- docs/changelog.rst | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 618e62a..f2ced11 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,14 @@ Changelog =========== +.. _v2_4_2: + +2.4.2 (2020-03-14) +------------------ + +- ``table.column_dicts`` now works with all column types - previously it would throw errors on types other than ``TEXT``, ``BLOB``, ``INTEGER`` or ``FLOAT``. (`#92 `__) +- Documentation for ``NotFoundError`` thrown by ``table.get(pk)`` - see :ref:`python_api_get`. + .. _v2_4_1: 2.4.1 (2020-03-01) diff --git a/setup.py b/setup.py index 544d1f5..5ddc106 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "2.4.1" +VERSION = "2.4.2" def get_long_description():