diff options
author | Colin Ihrig <cjihrig@gmail.com> | 2022-09-15 16:24:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-15 16:24:06 -0400 |
commit | ee208c1b20d5e51fa35583fb698930d70f1e5e8b (patch) | |
tree | a6d7a4a88e6b09ec9470a4f8cf460ef1e55037aa /cli | |
parent | 2fc88aba1ac69dd72e0d516de22157f72778b2ef (diff) |
chore: forward v1.25.3 release commit to main (#15919)
Co-authored-by: denobot <33910674+denobot@users.noreply.github.com>
Co-authored-by: cjihrig <cjihrig@users.noreply.github.com>
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 32 | ||||
-rw-r--r-- | cli/deno_std.rs | 2 |
2 files changed, 17 insertions, 17 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e007740c3..4ea11b25e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.25.2" +version = "1.25.3" authors = ["the Deno authors"] default-run = "deno" edition = "2021" @@ -26,18 +26,18 @@ harness = false path = "./bench/lsp_bench_standalone.rs" [build-dependencies] -deno_broadcast_channel = { version = "0.62.0", path = "../ext/broadcast_channel" } -deno_console = { version = "0.68.0", path = "../ext/console" } -deno_core = { version = "0.150.0", path = "../core" } -deno_crypto = { version = "0.82.0", path = "../ext/crypto" } -deno_fetch = { version = "0.91.0", path = "../ext/fetch" } -deno_net = { version = "0.60.0", path = "../ext/net" } -deno_node = { version = "0.5.0", path = "../ext/node" } -deno_url = { version = "0.68.0", path = "../ext/url" } -deno_web = { version = "0.99.0", path = "../ext/web" } -deno_webgpu = { version = "0.69.0", path = "../ext/webgpu" } -deno_websocket = { version = "0.73.0", path = "../ext/websocket" } -deno_webstorage = { version = "0.63.0", path = "../ext/webstorage" } +deno_broadcast_channel = { version = "0.63.0", path = "../ext/broadcast_channel" } +deno_console = { version = "0.69.0", path = "../ext/console" } +deno_core = { version = "0.151.0", path = "../core" } +deno_crypto = { version = "0.83.0", path = "../ext/crypto" } +deno_fetch = { version = "0.92.0", path = "../ext/fetch" } +deno_net = { version = "0.61.0", path = "../ext/net" } +deno_node = { version = "0.6.0", path = "../ext/node" } +deno_url = { version = "0.69.0", path = "../ext/url" } +deno_web = { version = "0.100.0", path = "../ext/web" } +deno_webgpu = { version = "0.70.0", path = "../ext/webgpu" } +deno_websocket = { version = "0.74.0", path = "../ext/websocket" } +deno_webstorage = { version = "0.64.0", path = "../ext/webstorage" } regex = "=1.6.0" serde = { version = "=1.0.144", features = ["derive"] } zstd = '=0.11.1' @@ -48,12 +48,12 @@ winres = "=0.1.12" [dependencies] deno_ast = { version = "0.19.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] } -deno_core = { version = "0.150.0", path = "../core" } +deno_core = { version = "0.151.0", path = "../core" } deno_doc = "0.45.0" deno_emit = "0.9.0" deno_graph = "0.34.0" deno_lint = { version = "0.33.0", features = ["docs"] } -deno_runtime = { version = "0.76.0", path = "../runtime" } +deno_runtime = { version = "0.77.0", path = "../runtime" } deno_task_shell = "0.5.2" atty = "=0.2.14" @@ -116,7 +116,7 @@ winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase", [dev-dependencies] csv = "1.1.6" -deno_bench_util = { version = "0.62.0", path = "../bench_util" } +deno_bench_util = { version = "0.63.0", path = "../bench_util" } dotenv = "0.15.0" flaky_test = "=0.1.0" google-storage1 = "3.1.0" diff --git a/cli/deno_std.rs b/cli/deno_std.rs index 6412eabe3..d1c0627c7 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.155.0/"; +static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.156.0/"; pub static CURRENT_STD_URL: Lazy<Url> = Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).unwrap()); |