diff --git a/Changelog b/Changelog index 8a563cd..73d14c4 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,10 @@ +2013-07-01: version 0.30 +========================== +1) 新增jieba.tokenize方法,返回每个词的起始位置 +2) 新增ChineseAnalyzer,用于支持whoosh搜索引擎 +3)添加了更多的中英混合词汇 +4)修改了一些py文件的加载方法,从而支持py2exe,cxfree打包为exe + 2013-06-17: version 0.29.1 ========================== 1) 优化了viterbi算法的代码,分词速度提升15% diff --git a/setup.py b/setup.py index 5f74b78..259c37a 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from distutils.core import setup setup(name='jieba', - version='0.29.1', + version='0.30', description='Chinese Words Segementation Utilities', author='Sun, Junyi', author_email='ccnusjy@gmail.com',