Skip to content

Commit

Permalink
Bump version 0.5.2b2 (#288)
Browse files Browse the repository at this point in the history
* Bump version 0.5.2b2

* update changelog
  • Loading branch information
aisk authored Jul 4, 2024
1 parent c52cd9c commit 9158d0a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ UNRELEASED
----------

- 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``.
- Using a thread pool to avoid ``TAsyncSocket.open`` block the event loop.


Version 0.5.1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools", "cython>=0.28.4,<4"]

[project]
name = "thriftpy2"
version = "0.5.1"
version = "0.5.2b2"
description = "Pure python implementation of Apache Thrift."
authors = [
{name = "ThriftPy Organization", email = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion thriftpy2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .hook import install_import_hook, remove_import_hook
from .parser import load, load_module, load_fp

__version__ = '0.5.2b1'
__version__ = '0.5.2b2'
__python__ = sys.version_info
__all__ = ["install_import_hook", "remove_import_hook", "load", "load_module",
"load_fp"]

0 comments on commit 9158d0a

Please sign in to comment.