diff --git a/startos/versions/index.ts b/startos/versions/index.ts index d584c1a..507d353 100644 --- a/startos/versions/index.ts +++ b/startos/versions/index.ts @@ -5,8 +5,14 @@ import { VersionGraph } from '@start9labs/start-sdk' import { v0_1_0 } from './v0.1.0' +import { v0_2_0 } from './v0.2.0' export const versions = VersionGraph.of({ - current: v0_1_0, - other: [], + current: v0_2_0, + // Operators on v0.1.0:N can upgrade to the v0.2.0 line via the + // StartOS marketplace. v0.1.0 stays in `other` for as long as we + // want that upgrade path supported; once v0.3 ships and we're + // confident no one is still on the alpha line, this can be + // pruned. + other: [v0_1_0], })