diff --git a/readstr b/readstr index c152f85..7ecafd5 160000 --- a/readstr +++ b/readstr @@ -1 +1 @@ -Subproject commit c152f85e87d4238794e41fab2286a1ed009f278a +Subproject commit 7ecafd52395ccd0cce08d651469ed79cc5b554e6 diff --git a/startos/versions/index.ts b/startos/versions/index.ts index dbf8a4c..1920e8e 100644 --- a/startos/versions/index.ts +++ b/startos/versions/index.ts @@ -1,8 +1,9 @@ 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' +import { v0_1_0_2 } from './v0.1.0_2' export const versionGraph = VersionGraph.of({ - current: v0_1_0_1, - other: [v0_1_0_0], + current: v0_1_0_2, + other: [v0_1_0_0, v0_1_0_1], }) diff --git a/startos/versions/v0.1.0_2.ts b/startos/versions/v0.1.0_2.ts new file mode 100644 index 0000000..7a6def9 --- /dev/null +++ b/startos/versions/v0.1.0_2.ts @@ -0,0 +1,12 @@ +import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk' + +export const v0_1_0_2 = VersionInfo.of({ + version: '0.1.0:2', + releaseNotes: { + en_US: 'Update privacy policy contact email.', + }, + migrations: { + up: async ({ effects }) => {}, + down: IMPOSSIBLE, + }, +})