15 lines
655 B
TypeScript
15 lines
655 B
TypeScript
import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const v_0_0_9_0_a1 = VersionInfo.of({
|
|
version: '0.0.9:0-alpha.1',
|
|
releaseNotes: {
|
|
en_US: `- Add "Reset Spaced State" action so a corrupt /data/mainnet/ index can be wiped from the UI.
|
|
- Web terminal no longer requires spaced to be healthy, so gotty stays reachable when spaced crash-loops.
|
|
- Initial build bundles spaced + space-cli from horologger/spaces:v0.0.9s, managed spaced daemon (mainnet only), gotty browser terminal with admin basic auth, and the Bitcoin Core 31.x dependency.`,
|
|
},
|
|
migrations: {
|
|
up: async ({ effects }) => {},
|
|
down: IMPOSSIBLE,
|
|
},
|
|
})
|