From 43463c581b80321e8209538d7aafa8da7cf0ae0e Mon Sep 17 00:00:00 2001 From: AN Long Date: Wed, 28 Feb 2024 17:57:27 +0800 Subject: [PATCH] Bump version 0.4.20 --- CHANGES.rst | 5 +++++ thriftpy2/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index c650fa1..81fb95f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,11 @@ Changelog 0.4.x ~~~~~ +Version 0.4.20 +-------------- + +- Fix another compatibility issue with legacy Python. + Version 0.4.19 -------------- diff --git a/thriftpy2/__init__.py b/thriftpy2/__init__.py index 1abcc53..0410e18 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.19' +__version__ = '0.4.20' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]