From af0f6306a75423b45eb9244314f14504ebe32226 Mon Sep 17 00:00:00 2001 From: Mario Reder Date: Wed, 8 Apr 2020 07:14:03 +0200 Subject: [PATCH] add 2.5 to compat list --- compat-list.js | 1 + 1 file changed, 1 insertion(+) diff --git a/compat-list.js b/compat-list.js index 0fe6a07..fc57252 100644 --- a/compat-list.js +++ b/compat-list.js @@ -4,5 +4,6 @@ module.exports = function getCompatMin (currentVersion) { if (major === 2 && minor === 2) return [ '2', '0' ] if (major === 2 && minor === 3) return [ '2', '0' ] if (major === 2 && minor === 4) return [ '2', '0' ] + if (major === 2 && minor === 5) return [ '2', '0' ] throw new Error(`Compatibility list found unknown version ${currentVersion}`) }