From 1f2109bb0b4f1fbd81b3309ee5336a13d07a46df Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 12 Sep 2012 22:38:10 +0900 Subject: [PATCH] python: Bump up version number to 0.1.2 --- python/setup.py | 2 +- python/spdylay.pyx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/setup.py b/python/setup.py index c1f9af33..4d30a781 100644 --- a/python/setup.py +++ b/python/setup.py @@ -4,7 +4,7 @@ from distutils.extension import Extension setup( name = 'python-spdylay', # Also update __version__ in spdylay.pyx - version = '0.1.1', + version = '0.1.2', description = 'Python SPDY library on top of Spdylay C library', author = 'Tatsuhiro Tsujikawa', author_email = 'tatsuhiro.t@gmail.com', diff --git a/python/spdylay.pyx b/python/spdylay.pyx index 3b694d84..c3678ae1 100644 --- a/python/spdylay.pyx +++ b/python/spdylay.pyx @@ -5,7 +5,7 @@ from libc.string cimport memcpy, memset from libc.stdint cimport uint8_t, uint16_t, uint32_t, int32_t # Also update version in setup.py -__version__ = '0.1.1' +__version__ = '0.1.2' class EOFError(Exception): pass