diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index e2063d2..5e47e80 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -33,6 +33,7 @@ body: - 0.6.0 - 0.7.0 - 0.8.0 + - 0.9.0 validations: required: true - type: textarea diff --git a/Cargo.toml b/Cargo.toml index ecdf00c..fdce44e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.8.0" +version = "0.9.0" description = "DAR to OAR Converter" categories = ["compilers", "games", "parsing"] authors = ["SARDONYX-sard"] diff --git a/package.json b/package.json index a90f8a2..b01147e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "dar-to-oar", "description": "Converter", - "version": "0.8.0", + "version": "0.9.0", "license": "MIT", "homepage": "https://github.com/SARDONYX-sard/dar-to-oar", "private": true, diff --git a/tools/version_up.cjs b/tools/version_up.cjs index 2ff46b0..6a1ed0e 100644 --- a/tools/version_up.cjs +++ b/tools/version_up.cjs @@ -91,23 +91,23 @@ function updatePackageJson(newVersion) { fs.writeFileSync(packageJsonPath, `${JSON.stringify(packageJson, null, 2)}\n`); } -const workSpaceRegExp = /\[workspace\.package\]\nversion = "(.*)"/; - /** * @param {string} newVersion */ function updateCargoToml(newVersion) { + // biome-ignore lint/performance/useTopLevelRegex: + const workSpaceRegExp = /\[workspace\.package\]\nversion = "(.*)"/; let cargoToml = fs.readFileSync(cargoTomlPath, 'utf8'); cargoToml = cargoToml.replace(workSpaceRegExp, `[workspace.package]\nversion = "${newVersion}"`); fs.writeFileSync(cargoTomlPath, cargoToml); } -const issueRexExp = /options:\n((\s+- .*\n)+)/; - /** * @param {string} newVersion */ function updateIssueTemplate(newVersion) { + // biome-ignore lint/performance/useTopLevelRegex: + const issueRexExp = /options:\n((\s+- .*\n)+)/; let issueTemplate = fs.readFileSync(issueTemplatePath, 'utf8'); const versionList = issueTemplate.match(issueRexExp)?.[1]; if (versionList == null) {