build: bump version
parent
407182bc3b
commit
a3d829d859
|
|
@ -1,3 +1,9 @@
|
|||
## 0.2.1
|
||||
|
||||
fix: detect random special
|
||||
|
||||
feat: added timestamp to RankState
|
||||
|
||||
## 0.2.0
|
||||
|
||||
feat: add X match support
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ async function getNSOVer(): Promise<string> {
|
|||
throw new Error("No version found");
|
||||
}
|
||||
|
||||
return ver;
|
||||
return ver.trim();
|
||||
}
|
||||
|
||||
let content = await Deno.readTextFile(CONSTANT_PATH);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import type { StatInkPostBody, VsHistoryDetail } from "./types.ts";
|
||||
|
||||
export const AGENT_NAME = "s3si.ts";
|
||||
export const S3SI_VERSION = "0.2.0";
|
||||
export const S3SI_VERSION = "0.2.1";
|
||||
export const NSOAPP_VERSION = "2.4.0";
|
||||
export const WEB_VIEW_VERSION = "2.0.0-18810d39";
|
||||
export const S3SI_LINK = "https://github.com/spacemeowx2/s3si.ts";
|
||||
|
|
|
|||
Loading…
Reference in New Issue