3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 35
35
make cython
36
36
37
37
- name : Build
38
- uses : pypa/cibuildwheel@v2.5 .0
38
+ uses : pypa/cibuildwheel@v2.6 .0
39
39
env :
40
40
CIBW_TEST_REQUIRES : " pytest"
41
41
CIBW_TEST_COMMAND : " pytest {package}/test"
Original file line number Diff line number Diff line change
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
+
1
11
1.0.3
2
12
=====
3
13
Original file line number Diff line number Diff line change 6
6
import sys
7
7
8
8
9
- version = (1 , 0 , 4 , 'rc1' )
10
- __version__ = "1.0.4rc1 "
9
+ version = (1 , 0 , 4 )
10
+ __version__ = "1.0.4 "
11
11
12
12
13
13
if os .environ .get ("MSGPACK_PUREPYTHON" ) or sys .version_info [0 ] == 2 :
0 commit comments