Skip to content

Commit 9d0c7f2

Browse files
authored
Release v1.1.0rc2 (#619)
1 parent 9e26d80 commit 9d0c7f2

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/wheel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
CIBW_TEST_COMMAND: "pytest {package}/test"
3939
CIBW_ARCHS_LINUX: auto aarch64
4040
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
41-
CIBW_SKIP: pp*
41+
CIBW_SKIP: "pp* cp38-macosx_*"
4242

4343
- name: Build sdist
4444
if: runner.os == 'Linux'

ChangeLog.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1.1.0rc2
2+
========
3+
4+
Release Date: 2024-08-19
5+
6+
* Update Cython to 3.0.11 for better Python 3.13 support.
7+
* Update cibuildwheel to 2.20.0 to build Python 3.13 wheels.
8+
19
1.1.0rc1
210
========
311

msgpack/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from .exceptions import * # noqa: F403
55
from .ext import ExtType, Timestamp
66

7-
version = (1, 1, 0, "rc1")
8-
__version__ = "1.1.0rc1"
7+
version = (1, 1, 0, "rc2")
8+
__version__ = "1.1.0rc2"
99

1010

1111
if os.environ.get("MSGPACK_PUREPYTHON"):

0 commit comments

Comments
 (0)