From 6b342c791ee8593ec6b76eb0e32cd8b7ece6e1df Mon Sep 17 00:00:00 2001 From: Lixin Yu Date: Tue, 2 Feb 2016 23:24:04 +0800 Subject: [PATCH] add changelog, version bumps to v0.3.4 --- 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 dc94bd4..78db69d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,15 @@ Changelog 0.3.x ~~~~~ +Version 0.3.4 +------------- + +Released on Feb 3, 2016. + +- fix backward compat issue introduced in last version, add back + `set_timeout` api in socket. + + Version 0.3.3 ------------- diff --git a/docs/conf.py b/docs/conf.py index 8b51b7d..65efa3c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.3.3' +version = '0.3.4' # The full version, including alpha/beta/rc tags. -release = '0.3.3' +release = '0.3.4' # 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 20017f0..bf83653 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.3' +__version__ = '0.3.4' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]