Skip to content

Commit 2982e9f

Browse files
authored
release v1.0.7 (#569)
1 parent acd0684 commit 2982e9f

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ MANIFEST
22
build/*
33
dist/*
44
.tox
5+
.python-version
56
*.pyc
67
*.pyo
78
*.so

ChangeLog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1+
1.0.7
2+
=====
3+
4+
Release Date: 2023-09-28
5+
6+
* Fix build error of extension module on Windows. (#567)
7+
* ``setup.py`` doesn't skip build error of extension module. (#568)
8+
9+
110
1.0.6
211
=====
312

413
Release Date: 2023-09-21
514

15+
.. note::
16+
v1.0.6 Wheels for Windows don't contain extension module.
17+
Please upgrade to v1.0.7 or newer.
18+
619
* Add Python 3.12 wheels (#517)
720
* Remove Python 2.7, 3.6, and 3.7 support
821

msgpack/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import os
55

66

7-
version = (1, 0, 6)
8-
__version__ = "1.0.6"
7+
version = (1, 0, 7)
8+
__version__ = "1.0.7"
99

1010

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

0 commit comments

Comments
 (0)