From 08219bca2d5d8887e75eda496cc3180cbf199735 Mon Sep 17 00:00:00 2001 From: lxyu Date: Fri, 29 May 2015 14:01:51 +0800 Subject: [PATCH] add changelog, version bumps to v0.3.1 --- CHANGES.rst | 14 ++++++++++++++ docs/conf.py | 4 ++-- thriftpy/__init__.py | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 606a35b..7ff7772 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,20 @@ Changelog 0.3.x ~~~~~ +Version 0.3.1 +------------- + +Released on May 29, 2015. + +- lock down to use pure python only in windows env. (this avoid the cython + stuffs on windows totally) +- enable multiple include dirs, via `#131`_. +- bugfix for parsing of constants with separators, via `#134`_. + +.. _`#131`: https://github.com/eleme/thriftpy/pull/131 +.. _`#134`: https://github.com/eleme/thriftpy/pull/134 + + Version 0.3.0 ------------- diff --git a/docs/conf.py b/docs/conf.py index baa65a6..5bae213 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.3.0' +version = '0.3.1' # The full version, including alpha/beta/rc tags. -release = '0.3.0' +release = '0.3.1' # 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 19bd11a..131474c 100644 --- a/thriftpy/__init__.py +++ b/thriftpy/__init__.py @@ -5,6 +5,6 @@ from .hook import install_import_hook, remove_import_hook from .parser import load, load_module -__version__ = '0.3.0' +__version__ = '0.3.1' __python__ = sys.version_info __all__ = ["install_import_hook", "remove_import_hook", "load", "load_module"]