diff options
author | inada-n <songofacandy@gmail.com> | 2009-12-16 22:18:17 +0900 |
---|---|---|
committer | inada-n <songofacandy@gmail.com> | 2009-12-16 22:18:17 +0900 |
commit | 1ed4236bcf1f96e997dc453b2f88a7c4e385688c (patch) | |
tree | 3bab7a10f759ea1edecd413f83463ed85e7960f7 | |
parent | 5ff2c6be74cb61363995d43772c5a52566b19000 (diff) | |
download | msgpack-python-1ed4236bcf1f96e997dc453b2f88a7c4e385688c.tar.gz |
Make new Python release.0.1.2
-rwxr-xr-x | python/setup.py | 2 | ||||
-rwxr-xr-x | python/setup_dev.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/setup.py b/python/setup.py index b26b9e8..ee37098 100755 --- a/python/setup.py +++ b/python/setup.py @@ -5,7 +5,7 @@ from distutils.core import setup, Extension #from Cython.Distutils import build_ext import os -version = '0.1.1' +version = '0.1.2' msgpack_mod = Extension('msgpack._msgpack', #sources=['msgpack/_msgpack.pyx'] diff --git a/python/setup_dev.py b/python/setup_dev.py index e28ef25..abed7cd 100755 --- a/python/setup_dev.py +++ b/python/setup_dev.py @@ -5,7 +5,7 @@ from distutils.core import setup, Extension from Cython.Distutils import build_ext import os -version = '0.1.1dev' +version = '0.1.2dev' msgpack_mod = Extension('msgpack._msgpack', sources=['msgpack/_msgpack.pyx'] |