diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 705dcedbb..045fc215d 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20191028.0 \ No newline at end of file +12.0.20191111.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 575b5b8b7..e31170b12 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -28,6 +28,7 @@ setuptools.setup( 'odoo12-addon-stock_inventory_verification_request', 'odoo12-addon-stock_location_lockdown', 'odoo12-addon-stock_location_zone', + 'odoo12-addon-stock_move_location', 'odoo12-addon-stock_mts_mto_rule', 'odoo12-addon-stock_orderpoint_manual_procurement', 'odoo12-addon-stock_orderpoint_manual_procurement_uom', diff --git a/setup/stock_move_location/odoo/addons/stock_move_location b/setup/stock_move_location/odoo/addons/stock_move_location new file mode 120000 index 000000000..c0bc16074 --- /dev/null +++ b/setup/stock_move_location/odoo/addons/stock_move_location @@ -0,0 +1 @@ +../../../../stock_move_location \ No newline at end of file diff --git a/setup/stock_move_location/setup.py b/setup/stock_move_location/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_move_location/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)