From 3cd23ca5bdb98ecc031fdd4bd39864f1c50293f7 Mon Sep 17 00:00:00 2001 From: Daigo Tanaka Date: Sun, 11 Jul 2021 21:10:06 -0700 Subject: [PATCH] bump version to 0.2.7 --- HISTORY.md | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 48a5659..b93d6b8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,8 @@ ## History +### 0.2.7 (2021-07-11) +- fix: getschema.fix_type function: A valid null object is rejected + ### 0.2.6 (2021-06-29) - fix: a bug in schema inference where a TypeError is thrown when only a ValueError is currently expected diff --git a/setup.py b/setup.py index 65a1494..3d0cd2c 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from setuptools import setup -VERSION = "0.2.6" +VERSION = "0.2.7" with open("README.md", "r") as fh: long_description = fh.read()