diff --git a/Changelog b/Changelog index be1aaa3..3b9f5c6 100644 --- a/Changelog +++ b/Changelog @@ -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 的兼容性问题 diff --git a/jieba/__init__.py b/jieba/__init__.py index e24f137..dc88c05 100644 --- a/jieba/__init__.py +++ b/jieba/__init__.py @@ -1,5 +1,5 @@ from __future__ import absolute_import, unicode_literals -__version__ = '0.35' +__version__ = '0.36' __license__ = 'MIT' import re diff --git a/setup.py b/setup.py index bb31d1f..6db798d 100644 --- a/setup.py +++ b/setup.py @@ -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',