diff options
author | denobot <33910674+denobot@users.noreply.github.com> | 2022-12-14 15:22:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-15 00:22:54 +0100 |
commit | 0d4e4af7acf82c1365999a7281910daa05f0e982 (patch) | |
tree | 766660ac9a93e3cbb52ee1e930bff91fe9607e37 /cli/deno_std.rs | |
parent | 9f82abb4b4c5403ffeb9d3eabede57f9b544d930 (diff) |
1.29.0 (#17052)
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.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 2b114681d..874e75af5 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.167.0/"; +static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.168.0/"; pub static CURRENT_STD_URL: Lazy<Url> = Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).unwrap()); |