release v1.0.7 (#569)

This commit is contained in:
Inada Naoki 2023-09-28 17:31:52 +09:00 committed by GitHub
parent acd0684392
commit 2982e9ff72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 2 deletions

1
.gitignore vendored
View file

@ -2,6 +2,7 @@ MANIFEST
build/*
dist/*
.tox
.python-version
*.pyc
*.pyo
*.so

View file

@ -1,8 +1,21 @@
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)
1.0.6
=====
Release Date: 2023-09-21
.. note::
v1.0.6 Wheels for Windows don't contain extension module.
Please upgrade to v1.0.7 or newer.
* Add Python 3.12 wheels (#517)
* Remove Python 2.7, 3.6, and 3.7 support

View file

@ -4,8 +4,8 @@ from .ext import ExtType, Timestamp
import os
version = (1, 0, 6)
__version__ = "1.0.6"
version = (1, 0, 7)
__version__ = "1.0.7"
if os.environ.get("MSGPACK_PUREPYTHON"):