diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2225e17b..844989ff 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +0.14.0 (2017-11-20) +------------------- + +Features: + +- Use specified tokenizer when tagging (:issue:`167`). Thanks + :user:`jschnurr` for the PR. + 0.13.1 (2017-11-11) ------------------- diff --git a/textblob/__init__.py b/textblob/__init__.py index a9fdf0e1..9fe31c97 100644 --- a/textblob/__init__.py +++ b/textblob/__init__.py @@ -1,7 +1,7 @@ import os from .blob import TextBlob, Word, Sentence, Blobber, WordList -__version__ = '0.13.1' +__version__ = '0.14.0' __license__ = 'MIT' __author__ = 'Steven Loria'