diff options
author | denobot <33910674+denobot@users.noreply.github.com> | 2022-09-02 01:42:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-02 07:42:47 +0200 |
commit | 658d2cdff22646010915dc1f4a128de6c42a9f79 (patch) | |
tree | 122891ea374f32bcd23dc97f84d88c215d6554cc /cli/deno_std.rs | |
parent | 307d84cfa5c1489ddfc8477f6561676356399e8c (diff) |
chore: forward v1.25.1 release commit to main (#15735)
Co-authored-by: bartlomieju <bartlomieju@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 6ba9f2244..e5458780a 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.153.0/"; +static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.154.0/"; pub static CURRENT_STD_URL: Lazy<Url> = Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).unwrap()); |