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.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lxyu committed Jul 17, 2014
1 parent 90206f6 commit 0478c8e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
ThriftPy Changelog
==================

Version 0.1.4
-------------

Released on July 17, 2014.

- parser token cache, speed boost for thrift file parsing, via `#12`_.
- new cython binary protocol with speed very close to c ext, via `#16`_.

.. _`#12`: https://github.com/eleme/thriftpy/pull/14
.. _`#16`: https://github.com/eleme/thriftpy/pull/14

Version 0.1.3
-------------

Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include README.rst
include thriftpy/protocol/*.pyx
include thriftpy/protocol/*.c thriftpy/protocol/*.h
include thriftpy/protocol/cybin/*.pyx thriftpy/protocol/cybin/*.pxi
include thriftpy/protocol/cybin/*.c thriftpy/protocol/cybin/*.h
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.1.3'
version = '0.1.4'
# The full version, including alpha/beta/rc tags.
release = '0.1.3'
release = '0.1.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
]

dev_requires = [
"cython>=0.20.1",
"flake8>=2.1.0",
"cython>=0.20.2",
"flake8>=2.2.2",
"nose>=1.3.3",
"sphinx-rtd-theme>=0.1.6",
"sphinx>=1.2.2",
Expand Down
2 changes: 1 addition & 1 deletion thriftpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '0.1.3'
__version__ = '0.1.4'

import sys
__python__ = sys.version
Expand Down

0 comments on commit 0478c8e

Please sign in to comment.