Skip to content

Commit 4587393

Browse files
authored
release v1.1.0 (#622)
1 parent 20a2b8e commit 4587393

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

ChangeLog.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1.1.0
2+
=====
3+
4+
Release Date: 2024-09-10
5+
6+
* use ``PyLong_*`` instead of ``PyInt_*`` for compatibility with
7+
future Cython. (#620)
8+
19
1.1.0rc2
210
========
311

msgpack/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from .exceptions import * # noqa: F403
55
from .ext import ExtType, Timestamp
66

7-
version = (1, 1, 0, "rc2")
8-
__version__ = "1.1.0rc2"
7+
version = (1, 1, 0)
8+
__version__ = "1.1.0"
99

1010

1111
if os.environ.get("MSGPACK_PUREPYTHON"):

0 commit comments

Comments
 (0)