diff --git a/CHANGES.rst b/CHANGES.rst index d668537..7163ca8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,8 +4,10 @@ Changelog 0.5.x ~~~~~ -UNRELEASED ----------- +Version 0.5.2 +------------- + +Released on Jul 5, 2024. - Fix an issue where loading a thrift file in a sub-thread will cause an error with ``load_fp``. - Move static metadata from ``setup.py`` to ``pyproject.toml``. diff --git a/pyproject.toml b/pyproject.toml index 842c259..52f83da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "cython>=0.28.4,<4"] [project] name = "thriftpy2" -version = "0.5.2b2" +version = "0.5.2" description = "Pure python implementation of Apache Thrift." authors = [ {name = "ThriftPy Organization", email = "gotzehsing@gmail.com"}, diff --git a/thriftpy2/__init__.py b/thriftpy2/__init__.py index be8fb3c..42e0584 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.2b2' +__version__ = '0.5.2' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]