diff --git a/CHANGES.rst b/CHANGES.rst index 337f0f3..be5a4e9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,27 @@ ThriftPy Changelog ================== +Version 0.1.14 +-------------- + +Released on November 8, 2014. + +- support for python2.6. +- support for testing by tox. +- support for oneway keyword, via `#49`_. +- bugfix for wrong type args, via `#48`_. +- bugfix for thrift file include keyword, via `#53`_. +- bugfix for skip method not found in protocol, via `#55`_. +- bugfix for set type support, via `#59`_. +- bugfix for 'api' arg name collision in client. + +.. _`#48`: https://github.com/eleme/thriftpy/pull/48 +.. _`#49`: https://github.com/eleme/thriftpy/pull/49 +.. _`#53`: https://github.com/eleme/thriftpy/pull/53 +.. _`#55`: https://github.com/eleme/thriftpy/pull/55 +.. _`#59`: https://github.com/eleme/thriftpy/pull/59 + + Version 0.1.13 -------------- diff --git a/docs/conf.py b/docs/conf.py index a2c21d0..ef9f69b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.1.13' +version = '0.1.14' # The full version, including alpha/beta/rc tags. -release = '0.1.13' +release = '0.1.14' # 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 5197c27..fb340ea 100644 --- a/thriftpy/__init__.py +++ b/thriftpy/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '0.1.13' +__version__ = '0.1.14' import sys __python__ = sys.version_info