Skip to content

Commit

Permalink
Bump compatability key.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonkearns committed May 31, 2023
1 parent 689bf4e commit 98015a8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: 19.
Current Compatibility Key: 20.

## Contributors ✨

Expand Down
4 changes: 2 additions & 2 deletions generator/src/compatibility-key.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const compatibilityKey = 19;
export const compatibilityKey = 20;

export const packageVersion = "3.0.0-beta.42";
export const packageVersion = "3.0.0";
2 changes: 1 addition & 1 deletion src/Pages/Internal/Platform/CompatibilityKey.elm
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ module Pages.Internal.Platform.CompatibilityKey exposing (currentCompatibilityKe

currentCompatibilityKey : Int
currentCompatibilityKey =
19
20
2 changes: 1 addition & 1 deletion update-compatibility-keys.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import * as fs from "node:fs";

const currentCompatibilityKey = 19;
const currentCompatibilityKey = 20;
const currentPackageVersion = JSON.parse(
fs.readFileSync("./package.json")
).version;
Expand Down

0 comments on commit 98015a8

Please sign in to comment.