diff options
author | denobot <33910674+denobot@users.noreply.github.com> | 2023-02-02 11:28:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 16:28:40 +0000 |
commit | 65755a115a7af452d3ab1934fbc81cd8ff10d67f (patch) | |
tree | 95f5572a9e7464abb385fbb1c0e06aba24b4fd46 /cli/deno_std.rs | |
parent | dc854e83a4bd7c1726532502595948f604f0edc1 (diff) |
chore: forward v1.30.1 release commit to main (#17623)
This is the release commit being forwarded back to main for 1.30.1
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 af42f4093..d5f2a3050 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.174.0/"; +static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.176.0/"; pub static CURRENT_STD_URL: Lazy<Url> = Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).expect("invalid std url")); |