Skip to content

Commit

Permalink
Release v1.0.5rc1 (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Jan 18, 2023
1 parent b82d0b6 commit 1008229
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/black.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
9 changes: 9 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -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
=====

Expand Down
4 changes: 2 additions & 2 deletions msgpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
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:
Expand Down

0 comments on commit 1008229

Please sign in to comment.