Skip to content

Commit 1008229

Browse files
authored
Release v1.0.5rc1 (#528)
1 parent b82d0b6 commit 1008229

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

.github/workflows/black.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Setup Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4
1515
with:
1616
python-version: '3.x'
1717
architecture: 'x64'
1818

1919
- name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121

2222
- name: Black Code Formatter
2323
run: |

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
test:
1010
strategy:
1111
matrix:
12-
os: [ubuntu-20.04, windows-2022, macos-10.15]
13-
py: ["3.11-dev", "3.10", "3.9", "3.8", "3.7", "3.6"]
12+
os: [ubuntu-22.04, windows-2022, macos-10.15]
13+
py: ["3.11", "3.10", "3.9", "3.8", "3.7"]
1414

1515
runs-on: ${{ matrix.os }}
1616
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v3
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v3
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: ${{ matrix.py }}
2626
cache: "pip"

.github/workflows/wheel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
make cython
3636
3737
- name: Build
38-
uses: pypa/cibuildwheel@v2.9.0
38+
uses: pypa/cibuildwheel@v2.12.0
3939
env:
4040
CIBW_TEST_REQUIRES: "pytest"
4141
CIBW_TEST_COMMAND: "pytest {package}/test"

ChangeLog.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.0.5rc1
2+
========
3+
4+
Release Date: 2023-01-18
5+
6+
* Use ``__BYTE_ORDER__`` instead of ``__BYTE_ORDER`` for portability. (#513, #514)
7+
* Add Python 3.11 wheels (#517)
8+
* fallback: Fix packing multidimensional memoryview (#527)
9+
110
1.0.4
211
=====
312

msgpack/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import sys
77

88

9-
version = (1, 0, 4)
10-
__version__ = "1.0.4"
9+
version = (1, 0, 5, 'rc', 1)
10+
__version__ = "1.0.5rc1"
1111

1212

1313
if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2:

0 commit comments

Comments
 (0)