python: msgpack-python-0.1.8

This commit is contained in:
INADA Naoki 2011-01-09 23:58:26 +09:00
parent 3e2bd25e4e
commit 8195137bc5
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
0.1.8
======
:release date: NOT YET RELEASED
:release date: 2011-01-10
New feature
------------
@ -16,6 +16,7 @@ New feature
Bugs fixed
----------
* Fix segv around ``Unpacker.feed`` or ``Unpacker(file)``.
0.1.7

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python
# coding: utf-8
version = (0, 1, 7, 'final')
version = (0, 1, 8, 'final')
import os
import sys
@ -20,6 +20,8 @@ except ImportError:
f = open('msgpack/__version__.py', 'w')
f.write("version = %r\n" % (version,))
f.close()
del f
version_str = '.'.join(str(x) for x in version[:3])
if len(version) > 3 and version[3] != 'final':
version_str += version[3]