mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-25 19:32:11 +01:00
python: msgpack-python-0.1.8
This commit is contained in:
parent
3e2bd25e4e
commit
8195137bc5
@ -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
|
||||
|
@ -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]
|
||||
|
Loading…
x
Reference in New Issue
Block a user