Release v1.0.4 (#509)

This commit is contained in:
Inada Naoki 2022-06-03 13:46:51 +09:00 committed by GitHub
parent caadbf2df5
commit b5acfd5383
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 3 deletions

View file

@ -35,7 +35,7 @@ jobs:
make cython make cython
- name: Build - name: Build
uses: pypa/cibuildwheel@v2.5.0 uses: pypa/cibuildwheel@v2.6.0
env: env:
CIBW_TEST_REQUIRES: "pytest" CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/test" CIBW_TEST_COMMAND: "pytest {package}/test"

View file

@ -1,3 +1,13 @@
1.0.4
=====
Release Date: 2022-06-03
* Support Python 3.11 (beta).
* Don't define `__*_ENDIAN__` macro on Unix. by @methane in https://github.com/msgpack/msgpack-python/pull/495
* Use PyFloat_Pack8() on Python 3.11a7 by @vstinner in https://github.com/msgpack/msgpack-python/pull/499
* Fix Unpacker max_buffer_length handling by @methane in https://github.com/msgpack/msgpack-python/pull/506
1.0.3 1.0.3
===== =====

View file

@ -6,8 +6,8 @@ import os
import sys import sys
version = (1, 0, 4, 'rc1') version = (1, 0, 4)
__version__ = "1.0.4rc1" __version__ = "1.0.4"
if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2: if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2: