File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 55
66setup (
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 = 'v@sergeev.io' ,
Original file line number Diff line number Diff line change 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
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
3535https://github.com/vsergeev/u-msgpack-python
3636
3737u-msgpack-python is a lightweight MessagePack serializer and deserializer
5454else :
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
You can’t perform that action at this time.
0 commit comments