diff --git a/package.json b/package.json index ee88741e6b..ccb214795f 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "OpenLens", "description": "OpenLens - Open Source IDE for Kubernetes", "homepage": "https://github.com/lensapp/lens", - "version": "5.5.0-alpha.1", + "version": "5.5.0-alpha.0", "main": "static/build/main.js", "copyright": "© 2021 OpenLens Authors", "license": "MIT", diff --git a/src/migrations/weblinks-store/5.4.5-beta.1.ts b/src/migrations/weblinks-store/5.4.5-beta.1.ts index 803a05eae2..57d6f5c4ba 100644 --- a/src/migrations/weblinks-store/5.4.5-beta.1.ts +++ b/src/migrations/weblinks-store/5.4.5-beta.1.ts @@ -9,7 +9,7 @@ import type { MigrationDeclaration } from "../helpers"; import { kubernetesDocumentationWeblinkName, lensBlogWeblinkName, lensDocumentationWeblinkName, lensSlackWeblinkName, lensTwitterWeblinkName, lensWebsiteLinkName } from "./5.1.4"; export default { - version: "5.4.5-beta.1 || 5.5.0-alpha.1", + version: "5.4.5-beta.1 || >=5.5.0-alpha.0", run(store) { const weblinksRaw: any = store.get("weblinks"); const weblinks = (Array.isArray(weblinksRaw) ? weblinksRaw : []) as WeblinkData[];