summaryrefslogtreecommitdiff
path: root/cli/compat/mod.rs
diff options
context:
space:
mode:
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",