mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-12-08 06:09:49 +00:00
release v1.0.7 (#569)
This commit is contained in:
parent
acd0684392
commit
2982e9ff72
3 changed files with 16 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -2,6 +2,7 @@ MANIFEST
|
||||||
build/*
|
build/*
|
||||||
dist/*
|
dist/*
|
||||||
.tox
|
.tox
|
||||||
|
.python-version
|
||||||
*.pyc
|
*.pyc
|
||||||
*.pyo
|
*.pyo
|
||||||
*.so
|
*.so
|
||||||
|
|
|
||||||
|
|
@ -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
|
1.0.6
|
||||||
=====
|
=====
|
||||||
|
|
||||||
Release Date: 2023-09-21
|
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)
|
* Add Python 3.12 wheels (#517)
|
||||||
* Remove Python 2.7, 3.6, and 3.7 support
|
* Remove Python 2.7, 3.6, and 3.7 support
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@ from .ext import ExtType, Timestamp
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
||||||
version = (1, 0, 6)
|
version = (1, 0, 7)
|
||||||
__version__ = "1.0.6"
|
__version__ = "1.0.7"
|
||||||
|
|
||||||
|
|
||||||
if os.environ.get("MSGPACK_PUREPYTHON"):
|
if os.environ.get("MSGPACK_PUREPYTHON"):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue