From 25c8e553b7b5d0fbf36d8f416cfd0101348e151c Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Mon, 6 Oct 2025 21:12:17 -0400 Subject: [PATCH] feat: Add support for version 3.1.2 --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index e5579750..b7b62bb8 100644 --- a/lib/index.js +++ b/lib/index.js @@ -11,7 +11,7 @@ const util = require("./util"); const Options = require("./options"); const maybe = require("call-me-maybe"); -const supported31Versions = ["3.1.0", "3.1.1"]; +const supported31Versions = ["3.1.0", "3.1.1", "3.1.2"]; const supported30Versions = ["3.0.0", "3.0.1", "3.0.2", "3.0.3", "3.0.4"]; const supportedVersions = [...supported31Versions, ...supported30Versions];