update version: 0.42

This commit is contained in:
fxsjy 2020-01-13 21:24:45 +08:00
parent aa65031788
commit 5704e23bbf
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2019-1-13: version 0.42
1. 修复paddle模式空字符串coredump问题 @JesseyXujin
2. 修复cut_all模式切分丢字问题 @fxsjy
3. paddle安装检测优化 @vissssa
2019-1-8: version 0.41 2019-1-8: version 0.41
1. 开启paddle模式更友好 1. 开启paddle模式更友好
2. 修复cut_all模式不支持中英混合词的bug 2. 修复cut_all模式不支持中英混合词的bug

View File

@ -1,6 +1,6 @@
from __future__ import absolute_import, unicode_literals from __future__ import absolute_import, unicode_literals
__version__ = '0.41' __version__ = '0.42'
__license__ = 'MIT' __license__ = 'MIT'
import marshal import marshal

View File

@ -43,7 +43,7 @@ GitHub: https://github.com/fxsjy/jieba
""" """
setup(name='jieba', setup(name='jieba',
version='0.41', version='0.42',
description='Chinese Words Segmentation Utilities', description='Chinese Words Segmentation Utilities',
long_description=LONGDOC, long_description=LONGDOC,
author='Sun, Junyi', author='Sun, Junyi',