mirror of
https://github.com/fxsjy/jieba.git
synced 2025-07-24 00:00:05 +08:00
version update
This commit is contained in:
parent
8e99a13aa9
commit
cb414cb861
@ -1,3 +1,10 @@
|
|||||||
|
2015-06-27: version 0.37
|
||||||
|
1. 代码重构,分词器封装为Class,支持实例化,by @gumblex (https://github.com/fxsjy/jieba/commit/94840a734c32cfece05c0c3ec236ffc3d36b4ae6)
|
||||||
|
2. 修复cut_for_search的bug,完善posseg; by @gumblex
|
||||||
|
3. 修复posseg在0.36中引入的一处bug; by @wangbin
|
||||||
|
4. 修复load_userdict异常处理的bug; by @gip0
|
||||||
|
5. 修复生成词典二进制cache文件时跨文件系统的bug, 支持自定义; by @gumblex
|
||||||
|
|
||||||
2015-03-20: version 0.36
|
2015-03-20: version 0.36
|
||||||
1. 代码同时兼容python2与python3, 若干性能优化; by @gumblex
|
1. 代码同时兼容python2与python3, 若干性能优化; by @gumblex
|
||||||
2. 解决用户添加词的概率自动计算问题,分词更加准确;by @gumblex
|
2. 解决用户添加词的概率自动计算问题,分词更加准确;by @gumblex
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from __future__ import absolute_import, unicode_literals
|
from __future__ import absolute_import, unicode_literals
|
||||||
__version__ = '0.36.2'
|
__version__ = '0.37'
|
||||||
__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.36.2',
|
version='0.37',
|
||||||
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