Skip to content
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.

Commit

Permalink
add changelog, version bumps to v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lxyu committed May 29, 2015
1 parent f3db6de commit 08219bc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion thriftpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 08219bc

Please sign in to comment.