From b8c8e57c96e3aff4037dfb7eaff9f5afdbf22df9 Mon Sep 17 00:00:00 2001 From: Gwo Tzu-Hsing Date: Wed, 27 Sep 2023 22:34:57 +0800 Subject: [PATCH] bump to 0.4.17 --- CHANGES.rst | 7 +++++++ thriftpy2/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 50fb127..88b8e80 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,13 @@ Version 0.4.16 Released on Nov 15, 2022. +- Fix Cython build error in latest Python3 version + +Version 0.4.16 +------------- + +Released on Nov 15, 2022. + - Fix unexpected binary type id in TBinaryTransport serialization Version 0.4.15 diff --git a/thriftpy2/__init__.py b/thriftpy2/__init__.py index 2201a67..5afde43 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.16' +__version__ = '0.4.17' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]