From 880695caae5b48aa00d8a37b036d5c14b071dce4 Mon Sep 17 00:00:00 2001 From: lxyu Date: Thu, 21 Jan 2016 17:27:47 +0800 Subject: [PATCH] add changelog, version bumps to v0.3.3 --- CHANGES.rst | 17 +++++++++++++++++ docs/conf.py | 4 ++-- thriftpy/__init__.py | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 073972d..dc94bd4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,23 @@ Changelog 0.3.x ~~~~~ +Version 0.3.3 +------------- + +Released on Jan 21, 2016. + +- add support for ssl transport. +- add named loggers, via `#169`_. + +- refine socket and serversocket implementation with more configure options. + +- bugfix for parser failure on windows under python3.2 caused by samefile + method, via `#172`_. + +.. _`#169`: https://github.com/eleme/thriftpy/pull/169 +.. _`#172`: https://github.com/eleme/thriftpy/pull/172 + + Version 0.3.2 ------------- diff --git a/docs/conf.py b/docs/conf.py index 15ead2c..8b51b7d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.3.2' +version = '0.3.3' # The full version, including alpha/beta/rc tags. -release = '0.3.2' +release = '0.3.3' # 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 a094ffc..20017f0 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.2' +__version__ = '0.3.3' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module", "load_fp"]