diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 4341f90748..2b79ce9954 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,9 @@ Changelog --------- +**v0.1.13** November 1, 2017 + * Add MANIFEST.in (:pr:`26`) + **v0.1.11** October 31, 2017 * Package linting (:pr:`7`) * Custom primitive creation functions (:pr:`13`) diff --git a/featuretools/__init__.py b/featuretools/__init__.py index 4bc2934c29..fe8f3157fd 100644 --- a/featuretools/__init__.py +++ b/featuretools/__init__.py @@ -11,4 +11,4 @@ from .utils.pickle_utils import * import featuretools.demo -__version__ = '0.1.11' +__version__ = '0.1.13' diff --git a/setup.py b/setup.py index a05496c949..b8b2f41fff 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,9 @@ def finalize_options(self): setup( name='featuretools', - version='0.1.11', + version='0.1.13', packages=find_packages(), + package_data={'featuretools': ['config_yaml.txt']}, description='a framework for automated feature engineering', url='http://featuretools.com', license='BSD 3-clause',