Commit fb72f471 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

python: Bump up package version to 0.1.1

parent 5bb8a262
...@@ -4,7 +4,7 @@ from distutils.extension import Extension ...@@ -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.0', version = '0.1.1',
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',
......
...@@ -5,7 +5,7 @@ from libc.string cimport memcpy, memset ...@@ -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.0' __version__ = '0.1.1'
class EOFError(Exception): class EOFError(Exception):
pass pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment