1
0
mirror of https://github.com/moparisthebest/spdylay synced 2024-08-13 17:03:54 -04:00

python: Bump up version number to 0.1.2

This commit is contained in:
Tatsuhiro Tsujikawa 2012-09-12 22:38:10 +09:00
parent 23cbad64db
commit 1f2109bb0b
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ from distutils.extension import Extension
setup( setup(
name = 'python-spdylay', name = 'python-spdylay',
# Also update __version__ in spdylay.pyx # Also update __version__ in spdylay.pyx
version = '0.1.1', version = '0.1.2',
description = 'Python SPDY library on top of Spdylay C library', description = 'Python SPDY library on top of Spdylay C library',
author = 'Tatsuhiro Tsujikawa', author = 'Tatsuhiro Tsujikawa',
author_email = 'tatsuhiro.t@gmail.com', author_email = 'tatsuhiro.t@gmail.com',

View File

@ -5,7 +5,7 @@ from libc.string cimport memcpy, memset
from libc.stdint cimport uint8_t, uint16_t, uint32_t, int32_t from libc.stdint cimport uint8_t, uint16_t, uint32_t, int32_t
# Also update version in setup.py # Also update version in setup.py
__version__ = '0.1.1' __version__ = '0.1.2'
class EOFError(Exception): class EOFError(Exception):
pass pass