diff options
Diffstat (limited to 'tools/release/01_bump_crate_versions.ts')
-rwxr-xr-x | tools/release/01_bump_crate_versions.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release/01_bump_crate_versions.ts b/tools/release/01_bump_crate_versions.ts index d2446d44c..75daaf3f5 100755 --- a/tools/release/01_bump_crate_versions.ts +++ b/tools/release/01_bump_crate_versions.ts @@ -97,7 +97,7 @@ async function getGitLog() { } async function updateStdVersion() { - const compatFilePath = $.path.join(cliCrate.folderPath, "compat/mod.rs"); + const compatFilePath = $.path.join(cliCrate.folderPath, "deno_std.rs"); const text = await Deno.readTextFile(compatFilePath); const versionRe = /std@([0-9]+\.[0-9]+\.[0-9]+)/; const stdVersionText = versionRe.exec(text)?.[1]; |