summaryrefslogtreecommitdiff
path: root/cli/compat/mod.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-04-14 15:50:48 -0400
committerGitHub <noreply@github.com>2022-04-14 15:50:48 -0400
commit0e4574b2e3acb6594142021f2b3e30ad532f15ef (patch)
tree85f3b8847ed171031f847e888bc4e293196b0105 /cli/compat/mod.rs
parentf7e7f548499eff8d2df0872d1340ddcdfa028c45 (diff)
chore: forward v1.20.6 release commit to main (#14288)
Diffstat (limited to 'cli/compat/mod.rs')
-rw-r--r--cli/compat/mod.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/cli/compat/mod.rs b/cli/compat/mod.rs
index c7a0f18bc..af98641c0 100644
--- a/cli/compat/mod.rs
+++ b/cli/compat/mod.rs
@@ -16,11 +16,9 @@ use std::sync::Arc;
pub use esm_resolver::check_if_should_use_esm_loader;
pub use esm_resolver::NodeEsmResolver;
-// TODO(bartlomieju): this needs to be bumped manually for
-// each release, a better mechanism is preferable, but it's a quick and dirty
-// solution to avoid printing `X-Deno-Warning` headers when the compat layer is
-// downloaded
-pub(crate) static STD_URL_STR: &str = "https://deno.land/std@0.134.0/";
+// WARNING: Ensure this is the only deno_std version reference as this
+// is automatically updated by the version bump workflow.
+pub(crate) static STD_URL_STR: &str = "https://deno.land/std@0.135.0/";
static SUPPORTED_MODULES: &[&str] = &[
"assert",