Skip to content

Commit 0f16e34

Browse files
committed
update Wasabi to 2.7.1
1 parent 993bbe7 commit 0f16e34

5 files changed

Lines changed: 19 additions & 5 deletions

File tree

startos/install/versions/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { v2_6_0 } from './v2.6.0'
2+
import { v2_7_0 } from './v2.7.0'
3+
import { v2_7_1, WASABI_VERSION } from './v2.7.1'
24

3-
export { v2_7_0 as current } from './v2.7.0'
4-
export const other = [v2_6_0]
5+
export { v2_7_1 as current, WASABI_VERSION }
6+
export const other = [v2_6_0, v2_7_0]

startos/install/versions/v2.7.0.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk'
1+
import { VersionInfo } from '@start9labs/start-sdk'
22

33
export const v2_7_0 = VersionInfo.of({
44
version: '2.7.0:1.0',

startos/install/versions/v2.7.1.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { VersionInfo } from '@start9labs/start-sdk'
2+
3+
export const v2_7_1 = VersionInfo.of({
4+
version: '2.7.1:1.0',
5+
releaseNotes: 'Update Wasabi to 2.7.1',
6+
migrations: {
7+
up: async ({ effects }) => {},
8+
down: async ({ effects }) => {},
9+
},
10+
})
11+
12+
export const WASABI_VERSION = '2.7.1'

startos/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { sdk } from './sdk'
2-
import { T } from '@start9labs/start-sdk'
32
import {
43
ensureFileExists,
54
removeUtf8BOMCharacter,

startos/manifest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { setupManifest } from '@start9labs/start-sdk'
2+
import { WASABI_VERSION } from './install/versions'
23

34
export const manifest = setupManifest({
45
id: 'wasabi-webtop',
@@ -20,7 +21,7 @@ export const manifest = setupManifest({
2021
main: {
2122
arch: ['x86_64'],
2223
source: {
23-
dockerTag: 'ghcr.io/remcoros/wasabi-webtop:2.7.0',
24+
dockerTag: 'ghcr.io/remcoros/wasabi-webtop:' + WASABI_VERSION,
2425
},
2526
},
2627
},

0 commit comments

Comments
 (0)