Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
release v1.0.6
  • Loading branch information
methane committed Sep 21, 2023
commit 130332d88c594f9e4cbb05301b29f51d912e6b2b
6 changes: 3 additions & 3 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
1.0.6rc1
========
1.0.6
=====

Release Date: 2023-09-13
Release Date: 2023-09-21

* 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, "rc", 1)
__version__ = "1.0.6rc1"
version = (1, 0, 6)
__version__ = "1.0.6"


if os.environ.get("MSGPACK_PUREPYTHON"):
Expand Down