diff --git a/docs/source/templates/layout.html b/docs/source/templates/layout.html index d213158649..64a8714b7e 100644 --- a/docs/source/templates/layout.html +++ b/docs/source/templates/layout.html @@ -19,35 +19,8 @@ - {% endblock %} -{% block docs_body %} -
-
-

NOTICE

-

- The upcoming release of Featuretools 1.0.0 contains several breaking changes. Users are encouraged to test this version prior - to release: -

-

- pip install featuretools==1.0.0rc1 -

-

or

-

- conda install -c conda-forge -c conda-forge/label/featuretools_rc featuretools=1.0.0rc1 -

-

- For details on migrating to the new version, refer to - Transitioning to Featuretools Version 1.0. - Please report any issues in the Featuretools GitHub repo - or by messaging in Alteryx Open Source Slack. -

-
-
-
-{{ super() }} -{% endblock %} {%- block footer %} diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index bc95ef352f..bc375cc232 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.0.0rc1" + assert __version__ == "1.0.0.dev0" diff --git a/featuretools/version.py b/featuretools/version.py index 195ef069da..899e700f9b 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1 +1 @@ -__version__ = '1.0.0rc1' +__version__ = '1.0.0.dev0' diff --git a/setup.py b/setup.py index d6ec51d1d2..c45c9afbd9 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='featuretools', - version='1.0.0rc1', + version='1.0.0.dev0', packages=find_packages(), description='a framework for automated feature engineering', url='http://featuretools.com',