mirror of
https://github.com/fxsjy/jieba.git
synced 2025-07-10 00:01:33 +08:00
version change 0.38
This commit is contained in:
parent
e5c9af78e2
commit
1d5ea9f061
@ -1,3 +1,10 @@
|
|||||||
|
2015-12-16: version 0.38
|
||||||
|
1. 通过pkg_resources载入默认词典,支持在Spark等平台上运行, by @gumblex;
|
||||||
|
2. 扩充识别的汉字unicode范围:[\u4E00-\u9FD5], by @gumblex;
|
||||||
|
3. 关键词提取支持返回词性,修复posseg分词得到的pair做dict关键字的问题,by @jerryday;
|
||||||
|
4. 修复load_userdict加载用户词典不能识别含有空格等特殊字符的问题, by @gumblex;
|
||||||
|
5. 命令行分词支持返回词性, by @gumblex;
|
||||||
|
|
||||||
2015-06-27: version 0.37
|
2015-06-27: version 0.37
|
||||||
1. 代码重构,分词器封装为Class,支持实例化,by @gumblex (https://github.com/fxsjy/jieba/commit/94840a734c32cfece05c0c3ec236ffc3d36b4ae6)
|
1. 代码重构,分词器封装为Class,支持实例化,by @gumblex (https://github.com/fxsjy/jieba/commit/94840a734c32cfece05c0c3ec236ffc3d36b4ae6)
|
||||||
2. 修复cut_for_search的bug,完善posseg; by @gumblex
|
2. 修复cut_for_search的bug,完善posseg; by @gumblex
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from __future__ import absolute_import, unicode_literals
|
from __future__ import absolute_import, unicode_literals
|
||||||
__version__ = '0.37'
|
__version__ = '0.38'
|
||||||
__license__ = 'MIT'
|
__license__ = 'MIT'
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
2
setup.py
2
setup.py
@ -43,7 +43,7 @@ GitHub: https://github.com/fxsjy/jieba
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
setup(name='jieba',
|
setup(name='jieba',
|
||||||
version='0.37',
|
version='0.38',
|
||||||
description='Chinese Words Segementation Utilities',
|
description='Chinese Words Segementation Utilities',
|
||||||
long_description=LONGDOC,
|
long_description=LONGDOC,
|
||||||
author='Sun, Junyi',
|
author='Sun, Junyi',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user