Skip to content

Commit 027bc3f

Browse files
committed
update version and changelog to v2.5.2
1 parent 5ece62a commit 027bc3f

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
* Version 2.5.2 - 08/15/2019
2+
* Fix DeprecationWarning about using ABCs from 'collections' on Python 3.7.
3+
* Contributors
4+
* Gabe Appleton, @gappleto97 - 5ece62a
5+
16
* Version 2.5.1 - 03/03/2019
27
* Fix handling of naive/aware datetime objects when packing the timestamp extension type.
38
* Add handling for short reads during file object unpacking.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='u-msgpack-python',
8-
version='2.5.1',
8+
version='2.5.2',
99
description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.',
1010
author='vsergeev',
1111
author_email='[email protected]',

umsgpack.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# u-msgpack-python v2.5.1 - v at sergeev.io
1+
# u-msgpack-python v2.5.2 - v at sergeev.io
22
# https://github.com/vsergeev/u-msgpack-python
33
#
44
# u-msgpack-python is a lightweight MessagePack serializer and deserializer
@@ -31,7 +31,7 @@
3131
# THE SOFTWARE.
3232
#
3333
"""
34-
u-msgpack-python v2.5.1 - v at sergeev.io
34+
u-msgpack-python v2.5.2 - v at sergeev.io
3535
https://github.com/vsergeev/u-msgpack-python
3636
3737
u-msgpack-python is a lightweight MessagePack serializer and deserializer
@@ -54,10 +54,10 @@
5454
else:
5555
from collections import Hashable
5656

57-
__version__ = "2.5.1"
57+
__version__ = "2.5.2"
5858
"Module version string"
5959

60-
version = (2, 5, 1)
60+
version = (2, 5, 2)
6161
"Module version tuple"
6262

6363

0 commit comments

Comments
 (0)