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}`) }