Skip to content

Commit ec45a18

Browse files
authored
v1.1.0 (#43)
* bump version number * update changelog
1 parent a4e76fb commit ec45a18

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

docs/source/changelog.rst

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
11
=========
22
Changelog
33
=========
4-
**Future Release** TBD
4+
.. **Future Release** TBD
5+
* Enhancements
6+
* Fixes
7+
* Changes
8+
* Documentation Changes
9+
* Testing Changes
10+
11+
.. Thanks to the following people for contributing to this release:
12+
13+
**v1.1.0** Oct 26, 2020
514
* Changes
615
* Upgrade to Featuretools 0.20.0 and replace Text variable type with NaturalLanguage (:pr:`34`)
7-
* Replace nltk corpus download with a `nltk-data.tar` data tarball included during install. :pr:`31`
8-
* Augment `sdist` to first unpack the data tarball, then include data files in the sdist via `MANIFEST.in` :pr:`31`
9-
* Ignore unpacked data locally, could be generated by sdist :pr:`31`
16+
* Include corpus download with package instead of downloading at first run. (:pr:`31`)
17+
* Change corpus used by LSA primitive (:pr:`35`)
18+
* Refactor ``clean_tokens`` function (:pr:`29`)
1019
* Testing Changes
1120
* 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`
1221
* Move some test utils into `test/` :pr:`31`
1322

1423
Thanks to the following people for contributing to this release:
15-
:user:`gsheni` :user:`dsherry`
24+
:user:`dsherry`, :user:`eccabay`, :user:`gsheni`, :user`rwedge`
1625

1726
**v1.0.0** Aug 12, 2020
1827
* Changes

nlp_primitives/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# flake8: noqa
22
import nltk.data
33

4-
__version__ = '1.0.0'
4+
__version__ = '1.1.0'
55
import pkg_resources
66

77
from .diversity_score import DiversityScore

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name='nlp_primitives',
19-
version='1.0.0',
19+
version='1.1.0',
2020
author='Feature Labs, Inc.',
2121
author_email='support@featurelabs.com',
2222
license='BSD 3-clause',

0 commit comments

Comments
 (0)