diff --git a/Dockerfile b/Dockerfile index 28a3519..2ba87fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Stage 1: Install Bisq in Ubuntu where the .deb works FROM ubuntu:jammy AS bisq-builder -ARG BISQ_VERSION=1.10.2 +ARG BISQ_VERSION=1.10.3 ARG BISQ_PGP_KEY=B493319106CC3D1F252E19CBF806F422E222AA02 RUN apt-get update && \ diff --git a/startos/versions/v1.10.2.ts b/startos/versions/current.ts similarity index 78% rename from startos/versions/v1.10.2.ts rename to startos/versions/current.ts index 4ebed0e..fc552d5 100644 --- a/startos/versions/v1.10.2.ts +++ b/startos/versions/current.ts @@ -3,14 +3,14 @@ import { readFile, rm } from 'fs/promises' import { storeJson } from '../fileModels/store.json' import { getDefaultPassword } from '../utils' -export const v_1_10_2 = VersionInfo.of({ - version: '1.10.2:0', +export const current = VersionInfo.of({ + version: '1.10.3:0', releaseNotes: { - en_US: 'Bumps Bisq → 1.10.2.', - es_ES: 'Actualiza Bisq → 1.10.2.', - de_DE: 'Aktualisiert Bisq → 1.10.2.', - pl_PL: 'Aktualizuje Bisq → 1.10.2.', - fr_FR: 'Passe Bisq → 1.10.2.', + en_US: 'Bumps Bisq → 1.10.3.', + es_ES: 'Actualiza Bisq → 1.10.3.', + de_DE: 'Aktualisiert Bisq → 1.10.3.', + pl_PL: 'Aktualizuje Bisq → 1.10.3.', + fr_FR: 'Passe Bisq → 1.10.3.', }, migrations: { up: async ({ effects }) => { diff --git a/startos/versions/index.ts b/startos/versions/index.ts index 1641bd3..e596b0c 100644 --- a/startos/versions/index.ts +++ b/startos/versions/index.ts @@ -1,7 +1,7 @@ import { VersionGraph } from '@start9labs/start-sdk' -import { v_1_10_2 } from './v1.10.2' +import { current } from './current' export const versionGraph = VersionGraph.of({ - current: v_1_10_2, + current, other: [], })