version update 0.36

This commit is contained in:
fxsjy 2015-03-20 11:00:55 +08:00
parent 59aa8b69b1
commit 89481cfd84
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2015-03-20: version 0.36
1. 代码同时兼容python2与python3, 若干性能优化; by @gumblex
2. 解决用户添加词的概率自动计算问题分词更加准确by @gumblex
3. 可自定义cache_file的文件系统路径; by @changyy
4. TextRank算法实现完善; by @sing1ee@walkskyer
2014-11-15: version 0.35.1
1. 修复 Python 3.2 的兼容性问题

View File

@ -1,5 +1,5 @@
from __future__ import absolute_import, unicode_literals
__version__ = '0.35'
__version__ = '0.36'
__license__ = 'MIT'
import re

View File

@ -60,7 +60,7 @@ Python 3.x
"""
setup(name='jieba',
version='0.35',
version='0.36',
description='Chinese Words Segementation Utilities',
long_description=LONGDOC,
author='Sun, Junyi',