Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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.1
ARG BISQ_VERSION=1.10.2
ARG BISQ_PGP_KEY=B493319106CC3D1F252E19CBF806F422E222AA02

RUN apt-get update && \
Expand Down
4 changes: 2 additions & 2 deletions startos/versions/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { VersionGraph } from '@start9labs/start-sdk'
import { v_1_10_1 } from './v1.10.1'
import { v_1_10_2 } from './v1.10.2'

export const versionGraph = VersionGraph.of({
current: v_1_10_1,
current: v_1_10_2,
other: [],
})
14 changes: 7 additions & 7 deletions startos/versions/v1.10.1.ts → startos/versions/v1.10.2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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_1 = VersionInfo.of({
version: '1.10.1:0',
export const v_1_10_2 = VersionInfo.of({
version: '1.10.2:0',
releaseNotes: {
en_US: 'Bumps Bisq → 1.10.1.',
es_ES: 'Actualiza Bisq → 1.10.1.',
de_DE: 'Aktualisiert Bisq → 1.10.1.',
pl_PL: 'Aktualizuje Bisq → 1.10.1.',
fr_FR: 'Passe Bisq → 1.10.1.',
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.',
},
migrations: {
up: async ({ effects }) => {
Expand Down