17 lines
683 B
TypeScript
17 lines
683 B
TypeScript
import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const current = VersionInfo.of({
|
|
version: '0.1.2:0',
|
|
releaseNotes: {
|
|
en_US: 'Add a small browser interface for testing all todo operations.',
|
|
es_ES: 'Agrega una pequeña interfaz web para probar todas las operaciones de tareas.',
|
|
de_DE: 'Fügt eine kleine Browseroberfläche zum Testen aller Aufgabenoperationen hinzu.',
|
|
pl_PL: 'Dodaje mały interfejs przeglądarkowy do testowania wszystkich operacji na zadaniach.',
|
|
fr_FR: 'Ajoute une petite interface web pour tester toutes les opérations sur les tâches.',
|
|
},
|
|
migrations: {
|
|
up: async () => {},
|
|
down: IMPOSSIBLE,
|
|
},
|
|
})
|