Release v1.0.5rc1 (#528)

This commit is contained in:
Inada Naoki 2023-01-18 19:47:15 +09:00 committed by GitHub
parent b82d0b62f1
commit 1008229553
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 8 deletions

View file

@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Black Code Formatter
run: |

View file

@ -9,8 +9,8 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-10.15]
py: ["3.11-dev", "3.10", "3.9", "3.8", "3.7", "3.6"]
os: [ubuntu-22.04, windows-2022, macos-10.15]
py: ["3.11", "3.10", "3.9", "3.8", "3.7"]
runs-on: ${{ matrix.os }}
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
cache: "pip"

View file

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

View file

@ -1,3 +1,12 @@
1.0.5rc1
========
Release Date: 2023-01-18
* Use ``__BYTE_ORDER__`` instead of ``__BYTE_ORDER`` for portability. (#513, #514)
* Add Python 3.11 wheels (#517)
* fallback: Fix packing multidimensional memoryview (#527)
1.0.4
=====

View file

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