From 51f711497e1074d42543392ac0a21e08b9b2ebe4 Mon Sep 17 00:00:00 2001 From: Lx Yu Date: Tue, 19 Aug 2014 13:16:31 +0800 Subject: [PATCH] add changelog, version bump to v0.1.7 --- CHANGES.rst | 15 +++++++++++++++ docs/conf.py | 4 ++-- thriftpy/__init__.py | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 14285d4..2c2e9bb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,21 @@ ThriftPy Changelog ================== +Version 0.1.7 +------------- + +Released on August 19, 2014. + +- use args instead of kwargs in api calling to match upstream behavior. +- cython binary protocol auto grow buffer size, via `#29`_. +- bugfix for void api exception handling in processor. +- bugfix for cybin protocol buffer overflow and memcpy, via `#27`_ and `#28`_. + +.. _`#27`: https://github.com/eleme/thriftpy/pull/27 +.. _`#28`: https://github.com/eleme/thriftpy/pull/28 +.. _`#29`: https://github.com/eleme/thriftpy/pull/29 + + Version 0.1.6 ------------- diff --git a/docs/conf.py b/docs/conf.py index 85ba953..751d22f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.1.6' +version = '0.1.7' # The full version, including alpha/beta/rc tags. -release = '0.1.6' +release = '0.1.7' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/thriftpy/__init__.py b/thriftpy/__init__.py index 10464da..1d8cc89 100644 --- a/thriftpy/__init__.py +++ b/thriftpy/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '0.1.6' +__version__ = '0.1.7' import sys __python__ = sys.version_info