Release v1.1.0rc2

This commit is contained in:
Inada Naoki 2024-08-19 19:30:00 +09:00
parent 9e26d80ab2
commit d83689dace
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
1.1.0rc2
========
Release Date: 2024-08-19
* Update Cython to 3.0.11 for better Python 3.13 support.
* Update cibuildwheel to 2.20.0 to build Python 3.13 wheels.
1.1.0rc1 1.1.0rc1
======== ========

View file

@ -4,8 +4,8 @@ import os
from .exceptions import * # noqa: F403 from .exceptions import * # noqa: F403
from .ext import ExtType, Timestamp from .ext import ExtType, Timestamp
version = (1, 1, 0, "rc1") version = (1, 1, 0, "rc2")
__version__ = "1.1.0rc1" __version__ = "1.1.0rc2"
if os.environ.get("MSGPACK_PUREPYTHON"): if os.environ.get("MSGPACK_PUREPYTHON"):