release v1.2.0rc1

This commit is contained in:
Inada Naoki 2026-06-03 01:00:12 +09:00
parent 6cd7574183
commit 4632b018d1
2 changed files with 18 additions and 2 deletions

View file

@ -1,3 +1,19 @@
1.2.0
=====
Release Date: TBD
- Support free threaded Python. #654
- Dropped support for Python 3.9. #656
- Fix missing error checks in C code. #665, #666, #667, #672
- Fix `strict_map_key` option didn't work for `object_pairs_hook`. #673
- Increase DEFAULT_RECURSE_LIMIT of Unpacker to 1024. #676
- Fix memory leak when Unpacker returns error for invalid input. #671
- Fix `Packer.pack_ext_type()` ignored `autoreset` option. #663
- Fix `Timestamp.from_datetime()` returning wrong value for pre-epoch datetimes. #662
- Fix use-after-free in `unpackb()` and `Unpacker.unpack()` for non-contiguous input. #677
# 1.1.2
Release Date: 2025-10-08

View file

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