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 Nov 29, 2017
1 parent 21c4343 commit f593842
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
Changelog
=========

0.4.2 (2017-11-28)
------------------

Changes:

- Added a CLI for downloading ``textacy``-related data, inspired by the ``spaCy``
equivalent. It's *temporarily* undocumented, but to see available commands and
options, just pass the usual flag: ``$ python -m textacy --help``. Expect more
functionality (and docs!) to be added soonish. (#144)
- Note: The existing ``Dataset.download()`` methods work as before, and in fact,
they are being called under the hood from the command line.
- Made usage of ``networkx`` v2.0-compatible, and therefore dropped the <2.0
version requirement on that dependency. Upgrade as you please! (#131)
- Improved the regex for identifying phone numbers so that it's easier to view
and interpret its matches. (#128)

Bugfixes:

- Fixed caching of counts on ``textacy.Doc`` instance-specific, rather than
shared by all instances of the class. Oops.
- Fixed currency symbols regex, so as not to replace all instances of the letter "z"
when a custom string is passed into ``replace_currency_symbols()``. (#137)
- Fixed README usage example, which skipped downloading of dataset data. Btw,
see above for another way! (#124)
- Fixed typo in the API reference, which included the SupremeCourt dataset twice
and omitted the RedditComments dataset. (#129)
- Fixed typo in ``RedditComments.download()`` that prevented it from downloading
any data. (#143)

Contributors:

Many thanks to @asifm, @harryhoch, and @mdlynch37 for submitting PRs!


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

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.1'
release = '0.4.2'

# 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.1',
version='0.4.2',
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.1'
__version__ = '0.4.2'
# __resources_dir__ = os.path.join(
# os.path.dirname(pkgutil.get_loader('textacy').get_filename()),
# 'resources')
Expand Down

0 comments on commit f593842

Please sign in to comment.