release v1.1.0 (#622)

This commit is contained in:
Inada Naoki 2024-09-10 01:58:00 +09:00 committed by GitHub
parent 20a2b8eaa2
commit 4587393b1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
1.1.0
=====
Release Date: 2024-09-10
* use ``PyLong_*`` instead of ``PyInt_*`` for compatibility with
future Cython. (#620)
1.1.0rc2
========

View file

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