Skip to content

Commit 234d380

Browse files
committed
update docs and version to v2.1
1 parent 4a08514 commit 234d380

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
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.1 - 05/09/2015
2+
* Improve array and map unpacking performance under Python 2.
3+
* Add module `__version__` attribute.
4+
15
* Version 2.0 - 09/29/2014
26
* Add streaming serialization and deserialization with `pack`/`dump` and `unpack`/`load`, respectively, for file-like objects.
37

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# u-msgpack-python v2.0
1+
# u-msgpack-python v2.1
22

33
u-msgpack-python is a lightweight [MessagePack](http://msgpack.org/) serializer and deserializer module written in pure Python, compatible with both Python 2 and 3, as well CPython and PyPy implementations of Python. u-msgpack-python is fully compliant with the latest [MessagePack specification](https://github.com/msgpack/msgpack/blob/master/spec.md). In particular, it supports the new binary, UTF-8 string, and application-defined ext types.
44

msgpack.org.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# u-msgpack-python v2.0
1+
# u-msgpack-python v2.1
22

33
u-msgpack-python is a lightweight [MessagePack](http://msgpack.org/) serializer and deserializer module written in pure Python, compatible with both Python 2 and 3, as well CPython and PyPy implementations of Python. u-msgpack-python is fully compliant with the latest [MessagePack specification](https://github.com/msgpack/msgpack/blob/master/spec.md).
44

setup.py

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

33
setup(
44
name='u-msgpack-python',
5-
version='2.0',
5+
version='2.1',
66
description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.',
77
author='vsergeev',
88
author_email='vsergeev at gmail',

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.0 - vsergeev at gmail
1+
# u-msgpack-python v2.1 - vsergeev at gmail
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.0 - vsergeev at gmail
34+
u-msgpack-python v2.1 - vsergeev at gmail
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.0"
47+
__version__ = "2.1"
4848
"Module version string"
4949

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

5353
import struct

0 commit comments

Comments
 (0)