diff --git a/CHANGELOG.md b/CHANGELOG.md index ad392b8..9ec0da9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +* Version 2.6.0 - 04/25/2020 + * Add `use_tuple` option to unpacking functions for unpacking MessagePack arrays into tuples. + * Add `ext_serializable()` decorator for registration of application classes with Ext types for automatic packing and unpacking. + * Contributors + * Gabe Appleton, @gappleto97 - original idea behind 8aa0ee8 in https://github.com/vsergeev/u-msgpack-python/pull/37 + * Version 2.5.2 - 08/15/2019 * Fix DeprecationWarning about using ABCs from 'collections' on Python 3.7. * Contributors diff --git a/setup.py b/setup.py index d4230a2..abcf225 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='u-msgpack-python', - version='2.5.2', + version='2.6.0', description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.', author='vsergeev', author_email='v@sergeev.io', diff --git a/umsgpack.py b/umsgpack.py index d099d5e..c7dddf5 100644 --- a/umsgpack.py +++ b/umsgpack.py @@ -1,4 +1,4 @@ -# u-msgpack-python v2.5.2 - v at sergeev.io +# u-msgpack-python v2.6.0 - v at sergeev.io # https://github.com/vsergeev/u-msgpack-python # # u-msgpack-python is a lightweight MessagePack serializer and deserializer @@ -31,7 +31,7 @@ # THE SOFTWARE. # """ -u-msgpack-python v2.5.2 - v at sergeev.io +u-msgpack-python v2.6.0 - v at sergeev.io https://github.com/vsergeev/u-msgpack-python u-msgpack-python is a lightweight MessagePack serializer and deserializer @@ -54,10 +54,10 @@ else: from collections import Hashable -__version__ = "2.5.2" +__version__ = "2.6.0" "Module version string" -version = (2, 5, 2) +version = (2, 6, 0) "Module version tuple"