Skip to content

Commit

Permalink
update version and changelog to v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Mar 4, 2019
1 parent 50b1dd3 commit e290b76
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
* Version 2.5.1 - 03/03/2019
* Fix handling of naive/aware datetime objects when packing the timestamp extension type.
* Add handling for short reads during file object unpacking.
* Make Ext base class a new-style object for cleaner inheritance in Python 2.
* Improve length comparisons and instance checks for minor performance improvement.
* Contributors
* Gabe Appleton, @gappleto97 - 28907ba, 76751f3, 7a9b717
* DisposaBoy, @DisposaBoy - 50b1dd3

* Version 2.5.0 - 03/31/2018
* Add support for the timestamp extension type.
* Fix tests on big endian platforms
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='u-msgpack-python',
version='2.5.0',
version='2.5.1',
description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.',
author='vsergeev',
author_email='[email protected]',
Expand Down
8 changes: 4 additions & 4 deletions umsgpack.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# u-msgpack-python v2.5.0 - v at sergeev.io
# u-msgpack-python v2.5.1 - v at sergeev.io
# https://github.com/vsergeev/u-msgpack-python
#
# u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand Down Expand Up @@ -31,7 +31,7 @@
# THE SOFTWARE.
#
"""
u-msgpack-python v2.5.0 - v at sergeev.io
u-msgpack-python v2.5.1 - v at sergeev.io
https://github.com/vsergeev/u-msgpack-python
u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand All @@ -49,10 +49,10 @@
import sys
import io

__version__ = "2.5.0"
__version__ = "2.5.1"
"Module version string"

version = (2, 5, 0)
version = (2, 5, 1)
"Module version tuple"


Expand Down

0 comments on commit e290b76

Please sign in to comment.