Skip to content

Commit

Permalink
v1.1.0 (#43)
Browse files Browse the repository at this point in the history
* bump version number

* update changelog
  • Loading branch information
rwedge authored Oct 26, 2020
1 parent a4e76fb commit ec45a18
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
19 changes: 14 additions & 5 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
=========
Changelog
=========
**Future Release** TBD
.. **Future Release** TBD
* Enhancements
* Fixes
* Changes
* Documentation Changes
* Testing Changes
.. Thanks to the following people for contributing to this release:
**v1.1.0** Oct 26, 2020
* Changes
* Upgrade to Featuretools 0.20.0 and replace Text variable type with NaturalLanguage (:pr:`34`)
* Replace nltk corpus download with a `nltk-data.tar` data tarball included during install. :pr:`31`
* Augment `sdist` to first unpack the data tarball, then include data files in the sdist via `MANIFEST.in` :pr:`31`
* Ignore unpacked data locally, could be generated by sdist :pr:`31`
* Include corpus download with package instead of downloading at first run. (:pr:`31`)
* Change corpus used by LSA primitive (:pr:`35`)
* Refactor ``clean_tokens`` function (:pr:`29`)
* Testing Changes
* Add another set of CI jobs which ensure that we can make an nlp_primitives package, install that, and then still pass all the unit tests, vs an editable install :pr:`31`
* Move some test utils into `test/` :pr:`31`

Thanks to the following people for contributing to this release:
:user:`gsheni` :user:`dsherry`
:user:`dsherry`, :user:`eccabay`, :user:`gsheni`, :user`rwedge`

**v1.0.0** Aug 12, 2020
* Changes
Expand Down
2 changes: 1 addition & 1 deletion nlp_primitives/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# flake8: noqa
import nltk.data

__version__ = '1.0.0'
__version__ = '1.1.0'
import pkg_resources

from .diversity_score import DiversityScore
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='nlp_primitives',
version='1.0.0',
version='1.1.0',
author='Feature Labs, Inc.',
author_email='[email protected]',
license='BSD 3-clause',
Expand Down

0 comments on commit ec45a18

Please sign in to comment.