From 87c7687154a9bfdb7b852206e011d8d435c8fe96 Mon Sep 17 00:00:00 2001 From: AN Long Date: Fri, 28 Jun 2024 16:43:06 +0800 Subject: [PATCH] Bump version 0.5.2b1 --- CHANGES.rst | 10 ++++++++-- thriftpy2/__init__.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index be8a2f3..c036b43 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,8 +4,14 @@ Changelog 0.5.x ~~~~~ -Version0.5.1 ------------- +UNRELEASED +---------- + +- Fix an issue where loading a thrift file in a sub-thread will cause an error with ``load_fp``. + + +Version 0.5.1 +------------- Released on Jun 24, 2024. diff --git a/thriftpy2/__init__.py b/thriftpy2/__init__.py index 7263ff6..0064e91 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.5.1' +__version__ = '0.5.2b1' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]