From 499845870609f22c4f84080768c421cd25a3866d Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Sun, 8 Jan 2023 13:03:18 -0800 Subject: [PATCH] Bump compatability key. --- README.md | 2 +- generator/src/compatibility-key.js | 2 +- src/Pages/Internal/Platform/CompatibilityKey.elm | 2 +- update-compatibility-keys.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2c8740c2..54e24176 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ https://github.com/dillonkearns/elm-pages/projects You will see an error if the NPM and Elm package do not have a matching Compatibility Key. Usually it's best to upgrade to the latest version of both the Elm and NPM packages when you upgrade. However, in case you want to install versions that are behind the latest, the Compatibility Key is included here for reference. -Current Compatibility Key: 3. +Current Compatibility Key: 4. ## Contributors ✨ diff --git a/generator/src/compatibility-key.js b/generator/src/compatibility-key.js index db813e49..7d9310c8 100644 --- a/generator/src/compatibility-key.js +++ b/generator/src/compatibility-key.js @@ -1 +1 @@ -module.exports = { compatibilityKey: 3 }; +module.exports = { compatibilityKey: 4 }; diff --git a/src/Pages/Internal/Platform/CompatibilityKey.elm b/src/Pages/Internal/Platform/CompatibilityKey.elm index aaf5196d..55b9b1e4 100644 --- a/src/Pages/Internal/Platform/CompatibilityKey.elm +++ b/src/Pages/Internal/Platform/CompatibilityKey.elm @@ -3,4 +3,4 @@ module Pages.Internal.Platform.CompatibilityKey exposing (currentCompatibilityKe currentCompatibilityKey : Int currentCompatibilityKey = - 3 + 4 diff --git a/update-compatibility-keys.js b/update-compatibility-keys.js index 4db71a46..83762ded 100755 --- a/update-compatibility-keys.js +++ b/update-compatibility-keys.js @@ -2,7 +2,7 @@ const fs = require("fs"); -const currentCompatibilityKey = 3; +const currentCompatibilityKey = 4; fs.writeFileSync( "src/Pages/Internal/Platform/CompatibilityKey.elm",