Release v1.0.8 (#583)

This commit is contained in:
Inada Naoki 2024-03-01 20:35:28 +09:00 committed by GitHub
parent bf7bf88ad0
commit 9aedf8ed7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,13 @@
1.0.8
=====
Release Date: 2024-03-01
* Update Cython to 3.0.8. This fixes memory leak when iterating
``Unpacker`` object on Python 3.12.
* Do not include C/Cython files in binary wheels.
1.0.7
=====

View file

@ -4,8 +4,8 @@ from .ext import ExtType, Timestamp
import os
version = (1, 0, 7)
__version__ = "1.0.7"
version = (1, 0, 8)
__version__ = "1.0.8"
if os.environ.get("MSGPACK_PUREPYTHON"):