fix: forgot to update API_VERSION on 0.44.0
Massimo Melina committed
May 4, 2023 at 15:58 UTC
c5dff14cf9390d5c69a866d9fc21b54120a3b05d
1 file changed
+2
-2
src/const.ts
+2
-2
@@ -17,8 +17,8 @@ export const VERSION = pkg.version
17
export const DAY = 86_400_000
18
export const SESSION_DURATION = Number(process.env.SESSION_DURATION) * 1000 || DAY
19
20
-export const API_VERSION = 8 // entry.uri + script.plugin
21
-export const COMPATIBLE_API_VERSION = 1 // while changes in the api are not breaking, this number stays the same, otherwise is made equal to API_VERSION
20
+export const API_VERSION = 8.1 // entry.uri + script.plugin
21
+export const COMPATIBLE_API_VERSION = 1 // while changes in the api are not breaking, this number stays the same, otherwise it is made equal to API_VERSION
22
23
export const HFS_REPO = 'rejetto/hfs'
24