Skip to content

Commit b5acfd5

Browse files
authored
Release v1.0.4 (#509)
1 parent caadbf2 commit b5acfd5

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.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.5.0
38+
uses: pypa/cibuildwheel@v2.6.0
3939
env:
4040
CIBW_TEST_REQUIRES: "pytest"
4141
CIBW_TEST_COMMAND: "pytest {package}/test"

ChangeLog.rst

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
1.0.4
2+
=====
3+
4+
Release Date: 2022-06-03
5+
6+
* Support Python 3.11 (beta).
7+
* Don't define `__*_ENDIAN__` macro on Unix. by @methane in https://github.com/msgpack/msgpack-python/pull/495
8+
* Use PyFloat_Pack8() on Python 3.11a7 by @vstinner in https://github.com/msgpack/msgpack-python/pull/499
9+
* Fix Unpacker max_buffer_length handling by @methane in https://github.com/msgpack/msgpack-python/pull/506
10+
111
1.0.3
212
=====
313

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, 'rc1')
10-
__version__ = "1.0.4rc1"
9+
version = (1, 0, 4)
10+
__version__ = "1.0.4"
1111

1212

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

0 commit comments

Comments
 (0)