diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 7c3dd64b3..fed32fdda 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20210118.0 \ No newline at end of file +13.0.20210201.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 0cf33884d..756006997 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -31,6 +31,7 @@ setuptools.setup( 'odoo13-addon-stock_inventory_preparation_filter', 'odoo13-addon-stock_location_bin_name', 'odoo13-addon-stock_location_children', + 'odoo13-addon-stock_location_last_inventory_date', 'odoo13-addon-stock_location_lockdown', 'odoo13-addon-stock_location_position', 'odoo13-addon-stock_location_tray', diff --git a/setup/stock_location_last_inventory_date/odoo/addons/stock_location_last_inventory_date b/setup/stock_location_last_inventory_date/odoo/addons/stock_location_last_inventory_date new file mode 120000 index 000000000..f6b3dd1eb --- /dev/null +++ b/setup/stock_location_last_inventory_date/odoo/addons/stock_location_last_inventory_date @@ -0,0 +1 @@ +../../../../stock_location_last_inventory_date \ No newline at end of file diff --git a/setup/stock_location_last_inventory_date/setup.py b/setup/stock_location_last_inventory_date/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_location_last_inventory_date/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)