Skip to content

Commit 3efeead

Browse files
committed
Prepare v1.2.2rc1 release
1 parent 33fec11 commit 3efeead

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
110
# 1.2.1
211

312
Release Date: 2026-06-19

msgpack/__init__.py

Lines changed: 2 additions & 2 deletions
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, 2, 1)
8-
__version__ = "1.2.1"
7+
version = (1, 2, 2)
8+
__version__ = "1.2.2rc1"
99

1010

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

0 commit comments

Comments
 (0)