diff --git a/readstr b/readstr index b3081df..c152f85 160000 --- a/readstr +++ b/readstr @@ -1 +1 @@ -Subproject commit b3081dfd6ef93d0f1a4b08a0ca446a8f102a2ed0 +Subproject commit c152f85e87d4238794e41fab2286a1ed009f278a diff --git a/startos/versions/index.ts b/startos/versions/index.ts index 509ffcf..dbf8a4c 100644 --- a/startos/versions/index.ts +++ b/startos/versions/index.ts @@ -1,7 +1,8 @@ import { VersionGraph } from '@start9labs/start-sdk' import { v0_1_0_0 } from './v0.1.0_0' +import { v0_1_0_1 } from './v0.1.0_1' export const versionGraph = VersionGraph.of({ - current: v0_1_0_0, - other: [], + current: v0_1_0_1, + other: [v0_1_0_0], }) diff --git a/startos/versions/v0.1.0_1.ts b/startos/versions/v0.1.0_1.ts new file mode 100644 index 0000000..8c1a551 --- /dev/null +++ b/startos/versions/v0.1.0_1.ts @@ -0,0 +1,12 @@ +import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk' + +export const v0_1_0_1 = VersionInfo.of({ + version: '0.1.0:1', + releaseNotes: { + en_US: 'Add privacy policy page and fix Chrome extension read-state sync.', + }, + migrations: { + up: async ({ effects }) => {}, + down: IMPOSSIBLE, + }, +})