From d5548b31507efe8edeb31cc5e42202dd942b4407 Mon Sep 17 00:00:00 2001 From: Lx Yu Date: Tue, 16 Sep 2014 15:24:01 +0800 Subject: [PATCH] add changelog, version bumps to v0.1.11 --- CHANGES.rst | 24 +++++++++++++++++++++++- docs/conf.py | 4 ++-- thriftpy/__init__.py | 2 +- 3 files changed, 26 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 213ad5a..690f787 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,12 +1,34 @@ ThriftPy Changelog ================== +Version 0.1.11 +-------------- + +Released on September 16, 2014. + +- bugfix for init func generator for TStruct. +- bugfix for set constants in parser, via `#39`_. +- add support for "includes" and service "extends", via `#37`_. +- add close() to servers, via `#38`_. +- implement non-strict mode for binary protocol, via `#40`_. +- removed cython ext in pypy, and add pypy3 support. +- some args updates: + * add `trans_factory` arg to `make_server` + * rename `rbuf_size` in buffered transport to `buf_size`. + * rename `isOpen` to `is_open`, `readFrame` to `read_frame`. + +.. _`#37`: https://github.com/eleme/thriftpy/pull/37 +.. _`#38`: https://github.com/eleme/thriftpy/pull/38 +.. _`#39`: https://github.com/eleme/thriftpy/pull/39 +.. _`#40`: https://github.com/eleme/thriftpy/pull/40 + + Version 0.1.10 -------------- Released on September 4, 2014. -- fix memory free bug in cython buffered transport, via `#35`_. +- bugfix for memory free in cython buffered transport, via `#35`_. - new thrift parser by PLY, removed cache since the performance is much more faster now, via `#36`_. diff --git a/docs/conf.py b/docs/conf.py index 45acce4..d505d48 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.1.10' +version = '0.1.11' # The full version, including alpha/beta/rc tags. -release = '0.1.10' +release = '0.1.11' # 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 8469302..d9f8e0f 100644 --- a/thriftpy/__init__.py +++ b/thriftpy/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '0.1.10' +__version__ = '0.1.11' import sys __python__ = sys.version_info