Skip to content

Commit cdf8980

Browse files
committed
update version and changelog to v2.4.0
1 parent e60bc5e commit cdf8980

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
* Version 2.4.0 - 04/20/2017
2+
* Add hash special method to Ext class.
3+
* Add packing option to force floating point precision.
4+
* Make codebase PEP 8 compliant.
5+
* Add support for tox automated testing and use it in CI.
6+
* Contributors
7+
* Fabien Fleutot, @fab13n - 4c461ed, bdeee20
8+
* Yuhang (Steven) Wang, @yuhangwang - 5f53bcf
9+
* Pedro Rodrigues, @medecau - 2f7b667, 456032c, e60bc5e
10+
111
* Version 2.3.0 - 10/19/2016
212
* Add `ext_handlers` option to packing and unpacking functions to support application-defined Ext packing and unpacking hooks.
313
* Add `allow_invalid_utf8` option to unpacking functions to allow unpacking of invalid UTF-8 strings.

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.3.0',
8+
version='2.4.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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# u-msgpack-python v2.3.0 - v at sergeev.io
1+
# u-msgpack-python v2.4.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.3.0 - v at sergeev.io
34+
u-msgpack-python v2.4.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
@@ -48,7 +48,7 @@
4848
import sys
4949
import io
5050

51-
__version__ = "2.3.0"
51+
__version__ = "2.4.0"
5252
"Module version string"
5353

5454
version = (2, 3, 0)

0 commit comments

Comments
 (0)