diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index d9f638a2c..bde4c30f8 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20200207.0 \ No newline at end of file +11.0.20200401.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index c0fafdb50..6b507612f 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -29,6 +29,7 @@ setuptools.setup( 'odoo11-addon-web_notify', 'odoo11-addon-web_refresher', 'odoo11-addon-web_responsive', + 'odoo11-addon-web_search_date', 'odoo11-addon-web_search_with_and', 'odoo11-addon-web_searchbar_full_width', 'odoo11-addon-web_send_message_popup', diff --git a/setup/web_search_date/odoo/addons/web_search_date b/setup/web_search_date/odoo/addons/web_search_date new file mode 120000 index 000000000..33bcd9874 --- /dev/null +++ b/setup/web_search_date/odoo/addons/web_search_date @@ -0,0 +1 @@ +../../../../web_search_date \ No newline at end of file diff --git a/setup/web_search_date/setup.cfg b/setup/web_search_date/setup.cfg new file mode 100644 index 000000000..3c6e79cf3 --- /dev/null +++ b/setup/web_search_date/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/web_search_date/setup.py b/setup/web_search_date/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/web_search_date/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)