File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1+ * Version 2.6.0 - 04/25/2020
2+ * Add ` use_tuple ` option to unpacking functions for unpacking MessagePack arrays into tuples.
3+ * Add ` ext_serializable() ` decorator for registration of application classes with Ext types for automatic packing and unpacking.
4+ * Contributors
5+ * Gabe Appleton, @gappleto97 - original idea behind 8aa0ee8 in https://github.com/vsergeev/u-msgpack-python/pull/37
6+
17* Version 2.5.2 - 08/15/2019
28 * Fix DeprecationWarning about using ABCs from 'collections' on Python 3.7.
39 * Contributors
Original file line number Diff line number Diff line change 55
66setup (
77 name = 'u-msgpack-python' ,
8- version = '2.5.2 ' ,
8+ version = '2.6.0 ' ,
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.2 - v at sergeev.io
1+ # u-msgpack-python v2.6.0 - 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.2 - v at sergeev.io
34+ u-msgpack-python v2.6.0 - 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.2 "
57+ __version__ = "2.6.0 "
5858"Module version string"
5959
60- version = (2 , 5 , 2 )
60+ version = (2 , 6 , 0 )
6161"Module version tuple"
6262
6363
You can’t perform that action at this time.
0 commit comments