Skip to content

Commit

Permalink
release v1.0.7 (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane authored Sep 28, 2023
1 parent acd0684 commit 2982e9f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ MANIFEST
build/*
dist/*
.tox
.python-version
*.pyc
*.pyo
*.so
Expand Down
13 changes: 13 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions msgpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"):
Expand Down

0 comments on commit 2982e9f

Please sign in to comment.