diff --git a/README.md b/README.md index 2561e71f..b410bcde 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: 9. +Current Compatibility Key: 10. ## Contributors ✨ diff --git a/generator/src/compatibility-key.js b/generator/src/compatibility-key.js index 7fb11166..33d0802b 100644 --- a/generator/src/compatibility-key.js +++ b/generator/src/compatibility-key.js @@ -1,3 +1,3 @@ -export const compatibilityKey = 9; +export const compatibilityKey = 10; export const packageVersion = "3.0.0-beta.25"; diff --git a/src/Pages/Internal/Platform/CompatibilityKey.elm b/src/Pages/Internal/Platform/CompatibilityKey.elm index fa4579f3..9a35aed7 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 = - 9 + 10 diff --git a/update-compatibility-keys.js b/update-compatibility-keys.js index e12a7d22..ef7b95af 100755 --- a/update-compatibility-keys.js +++ b/update-compatibility-keys.js @@ -2,7 +2,7 @@ import * as fs from "node:fs"; -const currentCompatibilityKey = 9; +const currentCompatibilityKey = 10; const currentPackageVersion = JSON.parse( fs.readFileSync("./package.json") ).version;