diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index ba21c5d9e..1a2b07dcd 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20200714.0 \ No newline at end of file +11.0.20200717.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 90b9547d2..e389b4629 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -11,6 +11,7 @@ setuptools.setup( 'odoo11-addon-web_access_rule_buttons', 'odoo11-addon-web_action_conditionable', 'odoo11-addon-web_advanced_search', + 'odoo11-addon-web_company_title', 'odoo11-addon-web_decimal_numpad_dot', 'odoo11-addon-web_dialog_size', 'odoo11-addon-web_disable_export_group', diff --git a/setup/web_company_title/odoo/addons/web_company_title b/setup/web_company_title/odoo/addons/web_company_title new file mode 120000 index 000000000..dd61e9bce --- /dev/null +++ b/setup/web_company_title/odoo/addons/web_company_title @@ -0,0 +1 @@ +../../../../web_company_title \ No newline at end of file diff --git a/setup/web_company_title/setup.cfg b/setup/web_company_title/setup.cfg new file mode 100644 index 000000000..3c6e79cf3 --- /dev/null +++ b/setup/web_company_title/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/web_company_title/setup.py b/setup/web_company_title/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/web_company_title/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)