Skip to content

Commit

Permalink
Release v1.0.5 (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Mar 8, 2023
1 parent aa9ce3e commit 4c55f80
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
1.0.5rc1
========
1.0.5
=====

Release Date: 2023-01-18
Release Date: 2023-03-08

* Use ``__BYTE_ORDER__`` instead of ``__BYTE_ORDER`` for portability. (#513, #514)
* Add Python 3.11 wheels (#517)
Expand Down
4 changes: 2 additions & 2 deletions msgpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import sys


version = (1, 0, 5, 'rc', 1)
__version__ = "1.0.5rc1"
version = (1, 0, 5)
__version__ = "1.0.5"


if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2:
Expand Down

0 comments on commit 4c55f80

Please sign in to comment.