diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2021-10-25 20:11:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 20:11:55 +0900 |
commit | f32f458318819088d59f58b7a4c05f0d28e41dff (patch) | |
tree | 21fba89629fc3449eedda1c2c76c0fd5face3e81 /cli | |
parent | c7dcf1cbddb7d44224ea626bbcc0b52811e6b275 (diff) |
v1.15.3 (#12533)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 2 | ||||
-rw-r--r-- | cli/compat/esm_resolver.rs | 2 | ||||
-rw-r--r-- | cli/compat/mod.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 06eb3ff6b..3c316f9b0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.15.2" +version = "1.15.3" authors = ["the Deno authors"] default-run = "deno" edition = "2018" diff --git a/cli/compat/esm_resolver.rs b/cli/compat/esm_resolver.rs index 49b0bb9e6..a4ea8cffc 100644 --- a/cli/compat/esm_resolver.rs +++ b/cli/compat/esm_resolver.rs @@ -1143,7 +1143,7 @@ mod tests { let cwd = testdir("basic"); let main = Url::from_file_path(cwd.join("main.js")).unwrap(); let expected = - Url::parse("https://deno.land/std@0.112.0/node/http.ts").unwrap(); + Url::parse("https://deno.land/std@0.113.0/node/http.ts").unwrap(); let actual = node_resolve("http", main.as_str(), &cwd).unwrap(); println!("actual {}", actual); diff --git a/cli/compat/mod.rs b/cli/compat/mod.rs index ad820c14c..ac0a34c5a 100644 --- a/cli/compat/mod.rs +++ b/cli/compat/mod.rs @@ -14,7 +14,7 @@ pub use esm_resolver::NodeEsmResolver; // 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 -static STD_URL_STR: &str = "https://deno.land/std@0.112.0/"; +static STD_URL_STR: &str = "https://deno.land/std@0.113.0/"; static SUPPORTED_MODULES: &[&str] = &[ "assert", |