From 14a0ba98af04bdad96087ccd0ba669c3a6ffd1b0 Mon Sep 17 00:00:00 2001 From: aymeric dominique Date: Thu, 11 Jan 2024 12:05:18 +0100 Subject: [PATCH] version --- src/api/version.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/version.controller.ts b/src/api/version.controller.ts index b99e27fa..a7a01a52 100644 --- a/src/api/version.controller.ts +++ b/src/api/version.controller.ts @@ -3,7 +3,7 @@ const router = express.Router() router.get('/', getIsExtensionUpToDate) function getIsExtensionUpToDate(req: Request, res: Response) { - const currentVersion = '6.0.8' + const currentVersion = '6.1.1' const version = req.query.version res.json(currentVersion > version) }