fix: forgot to update API_VERSION
Massimo Melina committed
Sep 21, 2023 at 00:00 UTC
3a810d606beaf7787bdcac4b6c286a766f72f8de
2 files changed
+2
-2
dev-plugins.md
+1
-1
@@ -358,7 +358,7 @@ Where `h` is just `import { createElement as h } from 'react'`.
358
359
## API version history
360
361
-- 8.4 (v0.48.0)
361
+- 8.4 (v0.48.2)
362
- HFS.fileShow
363
- api.Const (api.const is now deprecated)
364
- 8.3 (v0.47.0)
src/const.ts
+1
-1
@@ -16,7 +16,7 @@ const pkg = JSON.parse(fs.readFileSync(PKG_PATH,'utf8'))
16
export const VERSION = pkg.version
17
export const RUNNING_BETA = VERSION.includes('-')
18
19
-export const API_VERSION = 8.3
19
+export const API_VERSION = 8.4
20
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
21
22
export const HFS_REPO = 'rejetto/hfs'