summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/release/01_bump_crate_versions.ts27
1 files changed, 10 insertions, 17 deletions
diff --git a/tools/release/01_bump_crate_versions.ts b/tools/release/01_bump_crate_versions.ts
index b9f56706d..01aedb166 100755
--- a/tools/release/01_bump_crate_versions.ts
+++ b/tools/release/01_bump_crate_versions.ts
@@ -97,24 +97,17 @@ async function getGitLog() {
}
async function updateStdVersion() {
- const newStdVersion = await getLatestStdVersion();
const compatFilePath = path.join(cliCrate.folderPath, "compat/mod.rs");
- const text = Deno.readTextFileSync(compatFilePath);
- Deno.writeTextFileSync(
+ const text = await Deno.readTextFile(compatFilePath);
+ const versionRe = /std@([0-9]+\.[0-9]+\.[0-9]+)/;
+ const stdVersionText = versionRe.exec(text)?.[1];
+ if (stdVersionText == null) {
+ throw new Error(`Could not find the deno_std version in ${compatFilePath}`);
+ }
+ const stdVersion = semver.parse(stdVersionText)!;
+ const newStdVersion = stdVersion.inc("minor");
+ await Deno.writeTextFile(
compatFilePath,
- text.replace(/std@[0-9]+\.[0-9]+\.[0-9]+/, `std@${newStdVersion}`),
+ text.replace(versionRe, `std@${newStdVersion}`),
);
}
-
-async function getLatestStdVersion() {
- const url =
- "https://raw.githubusercontent.com/denoland/deno_std/main/version.ts";
- const result = await fetch(url);
- const text = await result.text();
- const version = /"([0-9]+\.[0-9]+\.[0-9]+)"/.exec(text);
- if (version == null) {
- throw new Error(`Could not find version in text: ${text}`);
- } else {
- return version[1];
- }
-}