Skip to content

Commit

Permalink
update version and changelog to v2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Aug 1, 2020
1 parent 77d322d commit 80fe3cc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* Version 2.7.0 - 08/01/2020
* Add support for packing subclasses of `ext_serializable()` application classes.
* Contributors
* Gabe Appleton, @gappleto97 - 620f6ef

* 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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='u-msgpack-python',
version='2.6.0',
version='2.7.0',
description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.',
author='vsergeev',
author_email='[email protected]',
Expand Down
8 changes: 4 additions & 4 deletions umsgpack.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# u-msgpack-python v2.6.0 - v at sergeev.io
# u-msgpack-python v2.7.0 - v at sergeev.io
# https://github.com/vsergeev/u-msgpack-python
#
# u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand Down Expand Up @@ -31,7 +31,7 @@
# THE SOFTWARE.
#
"""
u-msgpack-python v2.6.0 - v at sergeev.io
u-msgpack-python v2.7.0 - v at sergeev.io
https://github.com/vsergeev/u-msgpack-python
u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand All @@ -54,10 +54,10 @@
else:
from collections import Hashable

__version__ = "2.6.0"
__version__ = "2.7.0"
"Module version string"

version = (2, 6, 0)
version = (2, 7, 0)
"Module version tuple"


Expand Down

0 comments on commit 80fe3cc

Please sign in to comment.