diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 1a2b07dcd..97fb3cee0 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20200717.0 \ No newline at end of file +11.0.20201008.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index e389b4629..b941a8346 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -45,6 +45,7 @@ setuptools.setup( 'odoo11-addon-web_view_calendar_list', 'odoo11-addon-web_view_transition', 'odoo11-addon-web_widget_bokeh_chart', + 'odoo11-addon-web_widget_child_selector', 'odoo11-addon-web_widget_color', 'odoo11-addon-web_widget_digitized_signature', 'odoo11-addon-web_widget_domain_editor_dialog', diff --git a/setup/web_widget_child_selector/odoo/addons/web_widget_child_selector b/setup/web_widget_child_selector/odoo/addons/web_widget_child_selector new file mode 120000 index 000000000..e35e692af --- /dev/null +++ b/setup/web_widget_child_selector/odoo/addons/web_widget_child_selector @@ -0,0 +1 @@ +../../../../web_widget_child_selector \ No newline at end of file diff --git a/setup/web_widget_child_selector/setup.cfg b/setup/web_widget_child_selector/setup.cfg new file mode 100644 index 000000000..3c6e79cf3 --- /dev/null +++ b/setup/web_widget_child_selector/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/web_widget_child_selector/setup.py b/setup/web_widget_child_selector/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/web_widget_child_selector/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)