Skip to content

Commit b7bdf03

Browse files
committed
update version and changelog to v2.3.0
1 parent a2f8804 commit b7bdf03

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
* Version 2.3.0 - 10/19/2016
2+
* Add `ext_handlers` option to packing and unpacking functions to support application-defined Ext packing and unpacking hooks.
3+
* Add `allow_invalid_utf8` option to unpacking functions to allow unpacking of invalid UTF-8 strings.
4+
* Add hexadecimal prefix to data bytes in string representation of Ext objects.
5+
* Change version number to semantic versioning.
6+
17
* Version 2.2 - 09/25/2016
28
* Add `use_ordered_dict` option to unpacking functions for unpacking MessagePack maps into the `collections.OrderedDict` type.
39
* Add support for `bytearray` type to `unpackb`/`loads` functions.

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.2',
8+
version='2.3.0',
99
description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.',
1010
author='vsergeev',
1111
author_email='[email protected]',

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.2 - v at sergeev.io
1+
# u-msgpack-python v2.3.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
@@ -31,7 +31,7 @@
3131
# THE SOFTWARE.
3232
#
3333
"""
34-
u-msgpack-python v2.2 - v at sergeev.io
34+
u-msgpack-python v2.3.0 - v at sergeev.io
3535
https://github.com/vsergeev/u-msgpack-python
3636
3737
u-msgpack-python is a lightweight MessagePack serializer and deserializer
@@ -44,10 +44,10 @@
4444
License: MIT
4545
"""
4646

47-
__version__ = "2.2"
47+
__version__ = "2.3.0"
4848
"Module version string"
4949

50-
version = (2,2)
50+
version = (2,3,0)
5151
"Module version tuple"
5252

5353
import struct

0 commit comments

Comments
 (0)