diff --git a/CHANGES.rst b/CHANGES.rst index 78db69d..40fc74f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,17 @@ Changelog 0.3.x ~~~~~ +Version 0.3.4 +------------- + +Released on Feb 16, 2016. + +- fix another set_timeout backward compat issue introduced in last version. +- make thrift container struct unhashable, via `#184`. + +.. _`#184`: https://github.com/eleme/thriftpy/pull/184 + + Version 0.3.4 ------------- diff --git a/docs/conf.py b/docs/conf.py index 65efa3c..d6096bf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.3.4' +version = '0.3.5' # The full version, including alpha/beta/rc tags. -release = '0.3.4' +release = '0.3.5' # 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 bf83653..a2229ea 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.4' +__version__ = '0.3.5' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]