Skip to content

Commit

Permalink
Update changelog and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Burton DeWilde committed Jul 27, 2017
1 parent 711e925 commit 4b02a50
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Changelog
=========

0.4.1 (2017-07-27)
------------------

Changes:

- Added key classes to the top-level ``textacy`` imports, for convenience:
- ``textacy.text_stats.TextStats`` => ``textacy.TextStats``
- ``textacy.vsm.Vectorizer`` => ``textacy.Vectorizer``
- ``textacy.tm.TopicModel`` => ``textacy.TopicModel``
- Added tests for ``textacy.Doc`` and updated the README's usage example

Bugfixes:

- Added explicit encoding when opening Wikipedia database files in text mode to
resolve an issue when doing so without encoding on Windows (PR #118)
- Fixed ``keyterms.most_discriminating_terms`` to use the ``vsm.Vectorizer`` class
rather than the ``vsm.doc_term_matrix`` function that it replaced (PR #120)
- Fixed mishandling of a couple optional args in ``Doc.to_terms_list``

Contributors:

Thanks to @minketeer and @Gregory-Howard for the fixes!


0.4.0 (2017-06-21)
------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
# The short X.Y version.
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.4.0'
release = '0.4.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def read_file(fname, encoding='utf-8'):

setup(
name='textacy',
version='0.4.0',
version='0.4.1',
description='Higher-level text processing, built on spaCy',
long_description=read_file('README.rst'),

Expand Down
2 changes: 1 addition & 1 deletion textacy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
# import pkgutil

__version__ = '0.4.0'
__version__ = '0.4.1'
# __resources_dir__ = os.path.join(
# os.path.dirname(pkgutil.get_loader('textacy').get_filename()),
# 'resources')
Expand Down

0 comments on commit 4b02a50

Please sign in to comment.