We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acd0684 commit 2982e9fCopy full SHA for 2982e9f
3 files changed
.gitignore
@@ -2,6 +2,7 @@ MANIFEST
2
build/*
3
dist/*
4
.tox
5
+.python-version
6
*.pyc
7
*.pyo
8
*.so
ChangeLog.rst
@@ -1,8 +1,21 @@
1
+1.0.7
+=====
+
+Release Date: 2023-09-28
+* Fix build error of extension module on Windows. (#567)
+* ``setup.py`` doesn't skip build error of extension module. (#568)
9
10
1.0.6
11
=====
12
13
Release Date: 2023-09-21
14
15
+.. note::
16
+ v1.0.6 Wheels for Windows don't contain extension module.
17
+ Please upgrade to v1.0.7 or newer.
18
19
* Add Python 3.12 wheels (#517)
20
* Remove Python 2.7, 3.6, and 3.7 support
21
msgpack/__init__.py
@@ -4,8 +4,8 @@
import os
-version = (1, 0, 6)
-__version__ = "1.0.6"
+version = (1, 0, 7)
+__version__ = "1.0.7"
if os.environ.get("MSGPACK_PUREPYTHON"):
0 commit comments