Skip to content

Commit

Permalink
update changelog and version to 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Jan 17, 2014
1 parent 630e799 commit 2b88e6a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
* Version 1.6
* Fix wide character unicode string serialization. Thanks to cforger for the bug report and fix (https://github.com/vsergeev/u-msgpack-python/issues/8).
* Add module docstrings.
* Add module `version` tuple.
* Add Python standard library style `dumps` and `loads` serialization/deserialization aliases.
* Rename unpack exceptions `KeyNotPrimitiveException` -> `UnhashableKeyException` and `KeyDuplicateException` -> `DuplicateKeyException`. Add aliases for backwards compatibility.

* Version 1.5
* Hide internal helper functions from module's exported names.
* Make unit tests more portable among interpreters (CPython, PyPy).
Expand All @@ -8,8 +15,7 @@
* Add support for Python 2.6.

* Version 1.2
* Add compatibility mode to support old specification "raw" bytes msgpack
type.
* Add compatibility mode to support old specification "raw" bytes msgpack type.

* Version 1.0
* Initial release.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# u-msgpack-python v1.5
# u-msgpack-python v1.6

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 ext types.

Expand Down
2 changes: 1 addition & 1 deletion msgpack.org.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# u-msgpack-python v1.5
# u-msgpack-python v1.6

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).

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='u-msgpack-python',
version='1.5',
version='1.6',
description='A portable, lightweight msgpack serializer and deserializer written in pure Python.',
author='vsergeev',
author_email='vsergeev at gmail',
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 v1.5 - vsergeev at gmail
# u-msgpack-python v1.6 - vsergeev at gmail
# https://github.com/vsergeev/u-msgpack-python
#
# u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand All @@ -10,7 +10,7 @@
#
# MIT License
#
# Copyright (c) 2013 Ivan A. Sergeev
# Copyright (c) 2013-2014 Ivan A. Sergeev
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand All @@ -31,7 +31,7 @@
# THE SOFTWARE.
#
"""
u-msgpack-python v1.5 - vsergeev at gmail
u-msgpack-python v1.6 - vsergeev at gmail
https://github.com/vsergeev/u-msgpack-python
u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand All @@ -44,7 +44,7 @@
License: MIT
"""

version = (1,5)
version = (1,6)
"Module version tuple"

import struct
Expand Down

0 comments on commit 2b88e6a

Please sign in to comment.