From 2bca83f8ba3f8b51546b05ca65d180ef1b6fa29c Mon Sep 17 00:00:00 2001 From: Daigo Tanaka Date: Fri, 4 Jun 2021 17:00:20 +0000 Subject: [PATCH] bump version to 0.2.5 --- HISTORY.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 2ee97e2..ddc2a24 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,10 @@ ## History +### 0.2.5 (2021-06-04) + +- fix: prevent auto-converting 0, 0.0, '', etc to null +- fix: datetime check during fix_record() + ### 0.2.4 (2021-05-28) - fix: Condition ignores keys with a value of 0 #9 diff --git a/setup.py b/setup.py index e8d200b..127006e 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()