From 006b220c916b3e8a04e9f623db86d2f298a2a378 Mon Sep 17 00:00:00 2001 From: Daigo Tanaka Date: Fri, 4 Jun 2021 17:10:03 +0000 Subject: [PATCH] bump version to 0.2.5 with getschema update --- HISTORY.md | 4 ++++ setup.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 6ac3e3a..18d127f 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ ## History +### 0.2.5 (2021-06-04) + +- Update getschema to 0.2.5 to fix a bad null conversion + ### 0.2.4 (2021-05-25) - fix: Infer schema mode produces null record that causes "CRITICAL list index out of range" (#16) diff --git a/setup.py b/setup.py index b05fa24..5dc79a1 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from setuptools import setup -VERSION = "0.2.4" +VERSION = "0.2.5" with open("README.md", "r") as fh: long_description = fh.read() @@ -30,7 +30,7 @@ install_requires=[ "attrs>=18.1.0", "backoff==1.8.0", - "getschema>=0.2.3", + "getschema>=0.2.5", "jsonschema==2.6.0", "python-dateutil>=2.7.3", "requests>=2.20.0",