File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { 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 ]
Original file line number Diff line number Diff line change 1- import { IMPOSSIBLE , VersionInfo } from '@start9labs/start-sdk'
1+ import { VersionInfo } from '@start9labs/start-sdk'
22
33export const v2_7_0 = VersionInfo . of ( {
44 version : '2.7.0:1.0' ,
Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff line change 11import { sdk } from './sdk'
2- import { T } from '@start9labs/start-sdk'
32import {
43 ensureFileExists ,
54 removeUtf8BOMCharacter ,
Original file line number Diff line number Diff line change 11import { setupManifest } from '@start9labs/start-sdk'
2+ import { WASABI_VERSION } from './install/versions'
23
34export 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 } ,
You can’t perform that action at this time.
0 commit comments