diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/inspector_server.rs | 2 | ||||
-rw-r--r-- | runtime/ops/bootstrap.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/inspector_server.rs b/runtime/inspector_server.rs index 48d8e0a8f..1f8cd5e71 100644 --- a/runtime/inspector_server.rs +++ b/runtime/inspector_server.rs @@ -270,7 +270,7 @@ async fn server( let json_version_response = json!({ "Browser": name, "Protocol-Version": "1.3", - "V8-Version": deno_core::v8_version(), + "V8-Version": deno_core::v8::VERSION_STRING, }); // Create the server manually so it can use the Local Executor diff --git a/runtime/ops/bootstrap.rs b/runtime/ops/bootstrap.rs index 88475f415..0d8c1dab8 100644 --- a/runtime/ops/bootstrap.rs +++ b/runtime/ops/bootstrap.rs @@ -54,7 +54,7 @@ impl Default for SnapshotOptions { Self { ts_version: "n/a".to_owned(), - v8_version: deno_core::v8_version(), + v8_version: deno_core::v8::VERSION_STRING, target, } } |