diff options
author | denobot <33910674+denobot@users.noreply.github.com> | 2022-09-09 07:31:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-09 20:31:43 +0900 |
commit | 3bce2af0ebc997278519f5d6270915bb3fe8fd56 (patch) | |
tree | 17db9a3875fce1fadd8b6b0a754c75533e4b1a19 /cli/deno_std.rs | |
parent | 6c179daff07fe60d478142ea86231a34dc9ee1fd (diff) |
chore: forward v1.25.2 release commit to main (#15831)
Co-authored-by: kt3k <kt3k@users.noreply.github.com>
Diffstat (limited to 'cli/deno_std.rs')
-rw-r--r-- | cli/deno_std.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/deno_std.rs b/cli/deno_std.rs index e5458780a..6412eabe3 100644 --- a/cli/deno_std.rs +++ b/cli/deno_std.rs @@ -5,7 +5,7 @@ use once_cell::sync::Lazy; // WARNING: Ensure this is the only deno_std version reference as this // is automatically updated by the version bump workflow. -static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.154.0/"; +static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.155.0/"; pub static CURRENT_STD_URL: Lazy<Url> = Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).unwrap()); |