From 42dad49de39cae2d11fa02bc4d95dcd68b56e6d5 Mon Sep 17 00:00:00 2001 From: Sudhir ERP Harbor Date: Fri, 5 Jan 2024 19:13:17 +0530 Subject: [PATCH] [FIX] Changed the version in menifest for v17 Fixed the version error during installation in v17. ValueError: Invalid version '16.0.1.2.1'. Modules should have a version in format `x.y`, `x.y.z`, `17.0.x.y` or `17.0.x.y.z` --- fastapi/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/__manifest__.py b/fastapi/__manifest__.py index 2c4ef1de1..739076656 100644 --- a/fastapi/__manifest__.py +++ b/fastapi/__manifest__.py @@ -5,7 +5,7 @@ "name": "Odoo FastAPI", "summary": """ Odoo FastAPI endpoint""", - "version": "16.0.1.2.1", + "version": "17.0.1.0.0", "license": "LGPL-3", "author": "ACSONE SA/NV,Odoo Community Association (OCA)", "maintainers": ["lmignon"],