Skip to content

Commit

Permalink
update version and docs to v2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Sep 25, 2016
1 parent 591fa34 commit ed8bfbc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
* Version 2.2 - 09/25/2015
* Add `use_ordered_dict` option to unpacking functions for unpacking MessagePack maps into the `collections.OrderedDict` type.
* Add support for `bytearray` type to `unpackb`/`loads` functions.
* Fix intermittent unit test failures due to non-deterministic packing of dict test vectors.
* Fix several docstring examples and typos.
* Add license and unit test to source distribution packaging.

* Version 2.1 - 05/09/2015
* Improve array and map unpacking performance under Python 2.
* Add module `__version__` attribute.
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.1',
version='2.2',
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.1 - vsergeev at gmail
# u-msgpack-python v2.2 - 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.1 - vsergeev at gmail
u-msgpack-python v2.2 - v at sergeev.io
https://github.com/vsergeev/u-msgpack-python
u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand All @@ -44,10 +44,10 @@
License: MIT
"""

__version__ = "2.1"
__version__ = "2.2"
"Module version string"

version = (2,1)
version = (2,2)
"Module version tuple"

import struct
Expand Down

0 comments on commit ed8bfbc

Please sign in to comment.