diff --git a/Changelog b/Changelog index e385f0b7..a5967f27 100644 --- a/Changelog +++ b/Changelog @@ -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 1. 开启paddle模式更友好 2. 修复cut_all模式不支持中英混合词的bug diff --git a/jieba/__init__.py b/jieba/__init__.py index e66aa49c..f7b23e12 100644 --- a/jieba/__init__.py +++ b/jieba/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import, unicode_literals -__version__ = '0.41' +__version__ = '0.42' __license__ = 'MIT' import marshal diff --git a/setup.py b/setup.py index df926f55..b704a52e 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ """ setup(name='jieba', - version='0.41', + version='0.42', description='Chinese Words Segmentation Utilities', long_description=LONGDOC, author='Sun, Junyi',