There was an error while loading. Please reload this page.
1 parent 33fec11 commit 3efeeadCopy full SHA for 3efeead
2 files changed
CHANGELOG.md
@@ -1,3 +1,12 @@
1
+# 1.2.2
2
+
3
+Release Date: TBD
4
5
+- Fix the `read_size` documentation. #700
6
+- Fix silent truncation when unpacking an out-of-range timestamp with `timestamp=3`. #701
7
+- Prevent reentrant calls to `Unpacker.feed()` while unpacking. #704
8
9
10
# 1.2.1
11
12
Release Date: 2026-06-19
msgpack/__init__.py
@@ -4,8 +4,8 @@
from .exceptions import * # noqa: F403
from .ext import ExtType, Timestamp
-version = (1, 2, 1)
-__version__ = "1.2.1"
+version = (1, 2, 2)
+__version__ = "1.2.2rc1"
if os.environ.get("MSGPACK_PUREPYTHON"):
0 commit comments