diff --git a/HISTORY.md b/HISTORY.md index 539ca0e..a1cef30 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,14 @@ # History +## 0.3.0 - 2022-07-20 + +This release switches from ``MLPrimitives`` to ``ml-stars``. +Moreover, we remove all pipelines using deep feature synthesis. + +* Update demo bucket - [Issue #76](https://github.com/sintel-dev/Draco/issues/76) by @sarahmish +* Remove ``dfs`` based pipelines - [Issue #73](https://github.com/sintel-dev/Draco/issues/73) by @sarahmish +* Move from ``MLPrimitives`` to ``ml-stars`` - [Issue #72](https://github.com/sintel-dev/Draco/issues/72) by @sarahmish + ## 0.2.0 - 2022-04-12 diff --git a/draco/__init__.py b/draco/__init__.py index e134da2..b54bb16 100644 --- a/draco/__init__.py +++ b/draco/__init__.py @@ -4,7 +4,7 @@ __author__ = """MIT Data To AI Lab""" __email__ = 'dailabmit@gmail.com' -__version__ = '0.2.1.dev0' +__version__ = '0.2.1.dev1' import os diff --git a/setup.cfg b/setup.cfg index e78faaa..97a6f92 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1.dev0 +current_version = 0.2.1.dev1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 9087746..dba269e 100644 --- a/setup.py +++ b/setup.py @@ -118,6 +118,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sintel-dev/Draco', - version='0.2.1.dev0', + version='0.2.1.dev1', zip_safe=False, )