From 6583ae5df173f169ed81e1ce1bf124b1809bbc35 Mon Sep 17 00:00:00 2001 From: Zi-Xing Guo Date: Thu, 21 Jan 2021 17:41:13 +0800 Subject: [PATCH] Bump to 0.4.14 --- CHANGES.rst | 9 +++++++++ thriftpy2/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 86f1e489..ebb4eb5c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ Changelog 0.4.x ~~~~~ +Version 0.4.14 +------------- + +Released on Jan 21, 2021. + +- revert support Apache JSON protocol and binary type, via `2-#157`_. + +.. _2-#157: https://github.com/Thriftpy/thriftpy2/pull/157 + Version 0.4.13 ------------- diff --git a/thriftpy2/__init__.py b/thriftpy2/__init__.py index 4da9fd02..f05693a9 100644 --- a/thriftpy2/__init__.py +++ b/thriftpy2/__init__.py @@ -5,7 +5,7 @@ from .hook import install_import_hook, remove_import_hook from .parser import load, load_module, load_fp -__version__ = '0.4.13' +__version__ = '0.4.14' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]