From 69a0ff79750c01b3143098ce8cf574f7a8ae6fdf Mon Sep 17 00:00:00 2001 From: AN Long Date: Tue, 18 Jun 2024 15:54:22 +0800 Subject: [PATCH] Bump version v0.5.0rc2 --- CHANGES.rst | 1 + thriftpy2/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index b2b5fea..4db0b06 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,6 +5,7 @@ UNRELEASED ~~~~~~~~~~ - Fix an issue where loading a thrift file in a sub-thread will cause an error. +- Some typo fixes. 0.5.0 ~~~~~ diff --git a/thriftpy2/__init__.py b/thriftpy2/__init__.py index ef58495..ec5007c 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.1rc1' +__version__ = '0.5.1rc2' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]