diff --git a/privacy_consent/__manifest__.py b/privacy_consent/__manifest__.py index 71abc69..4745a89 100644 --- a/privacy_consent/__manifest__.py +++ b/privacy_consent/__manifest__.py @@ -4,7 +4,7 @@ "name": "Privacy - Consent", "summary": "Allow people to explicitly accept or reject inclusion " "in some activity, GDPR compliant", - "version": "12.0.1.1.0", + "version": "13.0.1.0.0", "development_status": "Production/Stable", "category": "Privacy", "website": "https://github.com/OCA/management-activity", diff --git a/privacy_consent/migrations/12.0.1.0.0/pre-migrate.py b/privacy_consent/migrations/12.0.1.0.0/pre-migrate.py deleted file mode 100644 index f5f19ce..0000000 --- a/privacy_consent/migrations/12.0.1.0.0/pre-migrate.py +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright 2019 Tecnativa - Jairo Llopis -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -from openupgradelib.openupgrade import rename_xmlids - - -def migrate(cr, version): - """Use a better xmlid for the provided server action.""" - rename_xmlids(cr, [ - ("privacy_consent.update_opt_out", "privacy_consent.sync_blacklist"), - ])