From c938b444a68409d696ecd35f544f717027142a2f Mon Sep 17 00:00:00 2001 From: lxyu Date: Thu, 24 Mar 2016 22:27:54 +0800 Subject: [PATCH] add changelog, version bumps to v0.3.7 --- CHANGES.rst | 9 +++++++++ docs/conf.py | 4 ++-- thriftpy/__init__.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2f4bb08..6a87e58 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,15 @@ Changelog 0.3.x ~~~~~ +Version 0.3.7 +------------- + +Released on Mar 24, 2016. + +- bugfix for a possible unicode decode error in cybin. +- use a better unhashable implementation for payload. + + Version 0.3.6 ------------- diff --git a/docs/conf.py b/docs/conf.py index 847f285..f1e6c9f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.3.6' +version = '0.3.7' # The full version, including alpha/beta/rc tags. -release = '0.3.6' +release = '0.3.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 6346446..72634f2 100644 --- a/thriftpy/__init__.py +++ b/thriftpy/__init__.py @@ -5,7 +5,7 @@ from .hook import install_import_hook, remove_import_hook from .parser import load, load_module, load_fp -__version__ = '0.3.6' +__version__ = '0.3.7' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]