Skip to content

Commit e0c4000

Browse files
committed
update version and changelog to v2.7.1
1 parent a827029 commit e0c4000

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* Version 2.7.1 - 10/24/2020
2+
* Add Ext type value validation to Ext class and `ext_serializable()` decorator.
3+
* Change string formatting from `%` to `.format()` throughout codebase.
4+
15
* Version 2.7.0 - 08/01/2020
26
* Add support for packing subclasses of `ext_serializable()` application classes.
37
* Contributors

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='u-msgpack-python',
8-
version='2.7.0',
8+
version='2.7.1',
99
description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.',
1010
author='vsergeev',
1111
author_email='v@sergeev.io',

umsgpack.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# u-msgpack-python v2.7.0 - v at sergeev.io
1+
# u-msgpack-python v2.7.1 - v at sergeev.io
22
# https://github.com/vsergeev/u-msgpack-python
33
#
44
# u-msgpack-python is a lightweight MessagePack serializer and deserializer
@@ -31,7 +31,7 @@
3131
# THE SOFTWARE.
3232
#
3333
"""
34-
u-msgpack-python v2.7.0 - v at sergeev.io
34+
u-msgpack-python v2.7.1 - v at sergeev.io
3535
https://github.com/vsergeev/u-msgpack-python
3636
3737
u-msgpack-python is a lightweight MessagePack serializer and deserializer
@@ -54,10 +54,10 @@
5454
else:
5555
from collections import Hashable
5656

57-
__version__ = "2.7.0"
57+
__version__ = "2.7.1"
5858
"Module version string"
5959

60-
version = (2, 7, 0)
60+
version = (2, 7, 1)
6161
"Module version tuple"
6262

6363

0 commit comments

Comments
 (0)