summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2022-06-03 13:46:51 +0900
committerGitHub <noreply@github.com>2022-06-03 13:46:51 +0900
commitb5acfd53833c3dbd379e539cc6e540cec83d0a99 (patch)
tree8e3e57a05567bf2095ea32852a02ce4103ceceb1
parentcaadbf2df5a87039a52a5dcf4fc3f151bba70eed (diff)
downloadmsgpack-python-b5acfd53833c3dbd379e539cc6e540cec83d0a99.tar.gz
Release v1.0.4 (#509)v1.0.4
-rw-r--r--.github/workflows/wheel.yml2
-rw-r--r--ChangeLog.rst10
-rw-r--r--msgpack/__init__.py4
3 files changed, 13 insertions, 3 deletions
diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml
index 9e8dce8..d73898c 100644
--- a/.github/workflows/wheel.yml
+++ b/.github/workflows/wheel.yml
@@ -35,7 +35,7 @@ jobs:
make cython
- name: Build
- uses: pypa/cibuildwheel@v2.5.0
+ uses: pypa/cibuildwheel@v2.6.0
env:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/test"
diff --git a/ChangeLog.rst b/ChangeLog.rst
index fc6df68..a11c814 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,3 +1,13 @@
+1.0.4
+=====
+
+Release Date: 2022-06-03
+
+* Support Python 3.11 (beta).
+* Don't define `__*_ENDIAN__` macro on Unix. by @methane in https://github.com/msgpack/msgpack-python/pull/495
+* Use PyFloat_Pack8() on Python 3.11a7 by @vstinner in https://github.com/msgpack/msgpack-python/pull/499
+* Fix Unpacker max_buffer_length handling by @methane in https://github.com/msgpack/msgpack-python/pull/506
+
1.0.3
=====
diff --git a/msgpack/__init__.py b/msgpack/__init__.py
index 81b2e67..5071021 100644
--- a/msgpack/__init__.py
+++ b/msgpack/__init__.py
@@ -6,8 +6,8 @@ import os
import sys
-version = (1, 0, 4, 'rc1')
-__version__ = "1.0.4rc1"
+version = (1, 0, 4)
+__version__ = "1.0.4"
if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2: