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.7.2 - 11/07/2022
2+ * Fix hex formatting of data bytes in Ext string representation.
3+ * Contributors
4+ * Stefan Ring, @Ringdingcoder - 309b1a9
5+
16* Version 2.7.1 - 10/24/2020
27 * Add Ext type value validation to Ext class and ` ext_serializable() ` decorator.
38 * Change string formatting from ` % ` to ` .format() ` throughout codebase.
Original file line number Diff line number Diff line change 55
66setup (
77 name = 'u-msgpack-python' ,
8- version = '2.7.1 ' ,
8+ version = '2.7.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.7.1 - v at sergeev.io
1+ # u-msgpack-python v2.7.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.7.1 - v at sergeev.io
34+ u-msgpack-python v2.7.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.7.1 "
57+ __version__ = "2.7.2 "
5858"Module version string"
5959
60- version = (2 , 7 , 1 )
60+ version = (2 , 7 , 2 )
6161"Module version tuple"
6262
6363
You can’t perform that action at this time.
0 commit comments