Release v1.0.5 (#534)

This commit is contained in:
Inada Naoki 2023-03-09 00:43:28 +09:00 committed by GitHub
parent aa9ce3e2bb
commit 4c55f809fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
1.0.5rc1
========
1.0.5
=====
Release Date: 2023-01-18
Release Date: 2023-03-08
* Use ``__BYTE_ORDER__`` instead of ``__BYTE_ORDER`` for portability. (#513, #514)
* Add Python 3.11 wheels (#517)

View file

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