v0.2.5 grouped actions

This commit is contained in:
local
2026-05-11 22:12:02 -05:00
parent e612e8b8e8
commit 45c8462fa2
9 changed files with 30 additions and 18 deletions
+3 -2
View File
@@ -5,8 +5,9 @@ import { v_0_2_1 } from './v0.2.1'
import { v_0_2_2 } from './v0.2.2'
import { v_0_2_3 } from './v0.2.3'
import { v_0_2_4 } from './v0.2.4'
import { v_0_2_5 } from './v0.2.5'
export const versionGraph = VersionGraph.of({
current: v_0_2_4,
other: [v_0_2_3, v_0_2_2, v_0_2_1, v_0_2_0, v_0_1_0],
current: v_0_2_5,
other: [v_0_2_4, v_0_2_3, v_0_2_2, v_0_2_1, v_0_2_0, v_0_1_0],
})
+13
View File
@@ -0,0 +1,13 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_2_5 = VersionInfo.of({
version: '0.2.5:0',
releaseNotes: {
en_US:
'StartOS actions are now grouped (Setup / AI Backends / Tiers) for easier navigation in the operator dashboard.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})