From 59e0cf9a6443578b86b4500e2479f78aaceb9ba3 Mon Sep 17 00:00:00 2001 From: scottbelden Date: Wed, 26 Feb 2020 09:15:05 -0500 Subject: [PATCH] 0.22.11 --- ChangeLog | 3 +++ fastavro/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index de55ab9f..750e23f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2020-02-26 version 0.22.11 +* Use pytz for the UTC timezone rather than our own custom one to prevent compatibility issues with pandas (@scottbelden in PR #396) + 2020-02-23 version 0.22.10 * Fix pre-epoch timestamps on Windows Python 3+ (@jmgpeeters in PR #394) diff --git a/fastavro/__init__.py b/fastavro/__init__.py index 3ef0d617..f10dcfac 100644 --- a/fastavro/__init__.py +++ b/fastavro/__init__.py @@ -40,7 +40,7 @@ writer(out, schema, records) ''' -__version_info__ = (0, 22, 10) +__version_info__ = (0, 22, 11) __version__ = '%s.%s.%s' % __version_info__