Skip to content

Commit

Permalink
update version and changelog to v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Apr 20, 2017
1 parent e60bc5e commit cdf8980
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
* Version 2.4.0 - 04/20/2017
* Add hash special method to Ext class.
* Add packing option to force floating point precision.
* Make codebase PEP 8 compliant.
* Add support for tox automated testing and use it in CI.
* Contributors
* Fabien Fleutot, @fab13n - 4c461ed, bdeee20
* Yuhang (Steven) Wang, @yuhangwang - 5f53bcf
* Pedro Rodrigues, @medecau - 2f7b667, 456032c, e60bc5e

* Version 2.3.0 - 10/19/2016
* Add `ext_handlers` option to packing and unpacking functions to support application-defined Ext packing and unpacking hooks.
* Add `allow_invalid_utf8` option to unpacking functions to allow unpacking of invalid UTF-8 strings.
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.3.0',
version='2.4.0',
description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.',
author='vsergeev',
author_email='[email protected]',
Expand Down
6 changes: 3 additions & 3 deletions umsgpack.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# u-msgpack-python v2.3.0 - v at sergeev.io
# u-msgpack-python v2.4.0 - 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.3.0 - v at sergeev.io
u-msgpack-python v2.4.0 - v at sergeev.io
https://github.com/vsergeev/u-msgpack-python
u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand All @@ -48,7 +48,7 @@
import sys
import io

__version__ = "2.3.0"
__version__ = "2.4.0"
"Module version string"

version = (2, 3, 0)
Expand Down

0 comments on commit cdf8980

Please sign in to comment.