summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-01-01 14:58:21 -0500
committerGitHub <noreply@github.com>2024-01-01 19:58:21 +0000
commit7e72f3af6152d4b62c2ea94d025dfa297a6b0cb4 (patch)
tree76753f501bbede065efca7a0b62b823d64a2d9de /runtime
parent8ba828b41e2609c91d993aec464035d62320fdad (diff)
chore: update copyright to 2024 (#21753)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Cargo.toml2
-rw-r--r--runtime/build.rs2
-rw-r--r--runtime/colors.rs2
-rw-r--r--runtime/errors.rs2
-rw-r--r--runtime/examples/extension_with_esm/bootstrap.js2
-rw-r--r--runtime/examples/extension_with_esm/main.js2
-rw-r--r--runtime/examples/extension_with_esm/main.rs2
-rw-r--r--runtime/examples/extension_with_ops/main.js2
-rw-r--r--runtime/examples/extension_with_ops/main.rs2
-rw-r--r--runtime/fmt_errors.rs2
-rw-r--r--runtime/fs_util.rs2
-rw-r--r--runtime/inspector_server.rs2
-rw-r--r--runtime/js.rs2
-rw-r--r--runtime/js/01_errors.js2
-rw-r--r--runtime/js/01_version.ts2
-rw-r--r--runtime/js/06_util.js2
-rw-r--r--runtime/js/10_permissions.js2
-rw-r--r--runtime/js/11_workers.js2
-rw-r--r--runtime/js/13_buffer.js2
-rw-r--r--runtime/js/30_os.js2
-rw-r--r--runtime/js/40_fs_events.js2
-rw-r--r--runtime/js/40_http.js2
-rw-r--r--runtime/js/40_process.js2
-rw-r--r--runtime/js/40_signals.js2
-rw-r--r--runtime/js/40_tty.js2
-rw-r--r--runtime/js/41_prompt.js2
-rw-r--r--runtime/js/90_deno_ns.js2
-rw-r--r--runtime/js/98_global_scope.js2
-rw-r--r--runtime/js/99_main.js2
-rw-r--r--runtime/lib.rs2
-rw-r--r--runtime/ops/bootstrap.rs2
-rw-r--r--runtime/ops/fs_events.rs2
-rw-r--r--runtime/ops/http.rs2
-rw-r--r--runtime/ops/mod.rs2
-rw-r--r--runtime/ops/os/mod.rs2
-rw-r--r--runtime/ops/os/sys_info.rs2
-rw-r--r--runtime/ops/permissions.rs2
-rw-r--r--runtime/ops/process.rs2
-rw-r--r--runtime/ops/runtime.rs2
-rw-r--r--runtime/ops/signal.rs2
-rw-r--r--runtime/ops/tty.rs2
-rw-r--r--runtime/ops/utils.rs2
-rw-r--r--runtime/ops/web_worker.rs2
-rw-r--r--runtime/ops/web_worker/sync_fetch.rs2
-rw-r--r--runtime/ops/worker_host.rs2
-rw-r--r--runtime/permissions/mod.rs2
-rw-r--r--runtime/permissions/prompter.rs2
-rw-r--r--runtime/shared.rs2
-rw-r--r--runtime/snapshot.rs2
-rw-r--r--runtime/tokio_util.rs2
-rw-r--r--runtime/web_worker.rs2
-rw-r--r--runtime/worker.rs2
-rw-r--r--runtime/worker_bootstrap.rs2
53 files changed, 53 insertions, 53 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index 9bfe977a2..456d2f76f 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_runtime"
diff --git a/runtime/build.rs b/runtime/build.rs
index ac20177a5..ca937b155 100644
--- a/runtime/build.rs
+++ b/runtime/build.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
mod shared;
diff --git a/runtime/colors.rs b/runtime/colors.rs
index 8790eccd1..e8f4f1ac8 100644
--- a/runtime/colors.rs
+++ b/runtime/colors.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use once_cell::sync::Lazy;
use std::fmt;
diff --git a/runtime/errors.rs b/runtime/errors.rs
index 96a827dd3..7f2e49250 100644
--- a/runtime/errors.rs
+++ b/runtime/errors.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
//! There are many types of errors in Deno:
//! - AnyError: a generic wrapper that can encapsulate any type of error.
diff --git a/runtime/examples/extension_with_esm/bootstrap.js b/runtime/examples/extension_with_esm/bootstrap.js
index 759dde939..7cbff9cb3 100644
--- a/runtime/examples/extension_with_esm/bootstrap.js
+++ b/runtime/examples/extension_with_esm/bootstrap.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
function hello() {
console.log("Hello from extension!");
}
diff --git a/runtime/examples/extension_with_esm/main.js b/runtime/examples/extension_with_esm/main.js
index 5b079d8d8..fe9be8c26 100644
--- a/runtime/examples/extension_with_esm/main.js
+++ b/runtime/examples/extension_with_esm/main.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
console.log("Hello world!");
console.log(Deno);
Extension.hello();
diff --git a/runtime/examples/extension_with_esm/main.rs b/runtime/examples/extension_with_esm/main.rs
index f8efdbe2f..c635761e1 100644
--- a/runtime/examples/extension_with_esm/main.rs
+++ b/runtime/examples/extension_with_esm/main.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::path::Path;
use std::rc::Rc;
diff --git a/runtime/examples/extension_with_ops/main.js b/runtime/examples/extension_with_ops/main.js
index 042573c08..d7cdc1ec4 100644
--- a/runtime/examples/extension_with_ops/main.js
+++ b/runtime/examples/extension_with_ops/main.js
@@ -1,2 +1,2 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
Deno[Deno.internal].core.ops.op_hello("World");
diff --git a/runtime/examples/extension_with_ops/main.rs b/runtime/examples/extension_with_ops/main.rs
index 2ef562ec9..f0b4364b5 100644
--- a/runtime/examples/extension_with_ops/main.rs
+++ b/runtime/examples/extension_with_ops/main.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::path::Path;
use std::rc::Rc;
diff --git a/runtime/fmt_errors.rs b/runtime/fmt_errors.rs
index 7945842bd..6ec63c007 100644
--- a/runtime/fmt_errors.rs
+++ b/runtime/fmt_errors.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
//! This mod provides DenoError to unify errors across Deno.
use crate::colors::cyan;
use crate::colors::italic_bold;
diff --git a/runtime/fs_util.rs b/runtime/fs_util.rs
index 204b0e4e8..f7c006a91 100644
--- a/runtime/fs_util.rs
+++ b/runtime/fs_util.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use deno_core::anyhow::Context;
use deno_core::error::AnyError;
diff --git a/runtime/inspector_server.rs b/runtime/inspector_server.rs
index 1c85b001d..8a90ed463 100644
--- a/runtime/inspector_server.rs
+++ b/runtime/inspector_server.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Alias for the future `!` type.
use core::convert::Infallible as Never;
diff --git a/runtime/js.rs b/runtime/js.rs
index f942493a3..97841ffb3 100644
--- a/runtime/js.rs
+++ b/runtime/js.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use deno_core::Snapshot;
use log::debug;
diff --git a/runtime/js/01_errors.js b/runtime/js/01_errors.js
index fb88f735b..ff2c619f4 100644
--- a/runtime/js/01_errors.js
+++ b/runtime/js/01_errors.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const { BadResource, Interrupted } = core;
diff --git a/runtime/js/01_version.ts b/runtime/js/01_version.ts
index cbbbd8d03..e0a187961 100644
--- a/runtime/js/01_version.ts
+++ b/runtime/js/01_version.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
const primordials = globalThis.__bootstrap.primordials;
const { ObjectFreeze } = primordials;
diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js
index 838b1d18c..31eed51e3 100644
--- a/runtime/js/06_util.js
+++ b/runtime/js/06_util.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const ops = core.ops;
diff --git a/runtime/js/10_permissions.js b/runtime/js/10_permissions.js
index 4519f14a2..60dd61f2c 100644
--- a/runtime/js/10_permissions.js
+++ b/runtime/js/10_permissions.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const ops = core.ops;
diff --git a/runtime/js/11_workers.js b/runtime/js/11_workers.js
index e8e66848e..473691014 100644
--- a/runtime/js/11_workers.js
+++ b/runtime/js/11_workers.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const ops = core.ops;
diff --git a/runtime/js/13_buffer.js b/runtime/js/13_buffer.js
index 907b07128..0692939de 100644
--- a/runtime/js/13_buffer.js
+++ b/runtime/js/13_buffer.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This code has been ported almost directly from Go's src/bytes/buffer.go
// Copyright 2009 The Go Authors. All rights reserved. BSD license.
diff --git a/runtime/js/30_os.js b/runtime/js/30_os.js
index f6d655633..5f88bd27e 100644
--- a/runtime/js/30_os.js
+++ b/runtime/js/30_os.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const ops = core.ops;
diff --git a/runtime/js/40_fs_events.js b/runtime/js/40_fs_events.js
index ba806c182..d5af0359b 100644
--- a/runtime/js/40_fs_events.js
+++ b/runtime/js/40_fs_events.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const { BadResourcePrototype, InterruptedPrototype, ops } = core;
diff --git a/runtime/js/40_http.js b/runtime/js/40_http.js
index 223c7a3e6..6ec8f4314 100644
--- a/runtime/js/40_http.js
+++ b/runtime/js/40_http.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core } from "ext:core/mod.js";
const ops = core.ops;
import { HttpConn } from "ext:deno_http/01_http.js";
diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js
index 2a97f81a3..24ae65ab6 100644
--- a/runtime/js/40_process.js
+++ b/runtime/js/40_process.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, internals, primordials } from "ext:core/mod.js";
const ops = core.ops;
diff --git a/runtime/js/40_signals.js b/runtime/js/40_signals.js
index 7faa6a8bc..a1b1897fc 100644
--- a/runtime/js/40_signals.js
+++ b/runtime/js/40_signals.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const ops = core.ops;
diff --git a/runtime/js/40_tty.js b/runtime/js/40_tty.js
index cb1a456a0..3e6cc29a5 100644
--- a/runtime/js/40_tty.js
+++ b/runtime/js/40_tty.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const ops = core.ops;
const {
diff --git a/runtime/js/41_prompt.js b/runtime/js/41_prompt.js
index d73f9d26b..ca2b82c21 100644
--- a/runtime/js/41_prompt.js
+++ b/runtime/js/41_prompt.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const ops = core.ops;
import { isatty } from "ext:runtime/40_tty.js";
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js
index 0c771ba83..4c0806f8e 100644
--- a/runtime/js/90_deno_ns.js
+++ b/runtime/js/90_deno_ns.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core } from "ext:core/mod.js";
const ops = core.ops;
diff --git a/runtime/js/98_global_scope.js b/runtime/js/98_global_scope.js
index d5ec700db..0c3bf7ea7 100644
--- a/runtime/js/98_global_scope.js
+++ b/runtime/js/98_global_scope.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const ops = core.ops;
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js
index 2ab10c13e..2e1b962e3 100644
--- a/runtime/js/99_main.js
+++ b/runtime/js/99_main.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Remove Intl.v8BreakIterator because it is a non-standard API.
delete Intl.v8BreakIterator;
diff --git a/runtime/lib.rs b/runtime/lib.rs
index 1a97a3376..dbdce7850 100644
--- a/runtime/lib.rs
+++ b/runtime/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
pub use deno_broadcast_channel;
pub use deno_cache;
diff --git a/runtime/ops/bootstrap.rs b/runtime/ops/bootstrap.rs
index 64536e721..1d4039d73 100644
--- a/runtime/ops/bootstrap.rs
+++ b/runtime/ops/bootstrap.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use deno_core::op2;
use deno_core::OpState;
diff --git a/runtime/ops/fs_events.rs b/runtime/ops/fs_events.rs
index 2d46f73ff..1e8fab936 100644
--- a/runtime/ops/fs_events.rs
+++ b/runtime/ops/fs_events.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::permissions::PermissionsContainer;
use deno_core::error::AnyError;
diff --git a/runtime/ops/http.rs b/runtime/ops/http.rs
index 65a990dd9..07ad7bcb6 100644
--- a/runtime/ops/http.rs
+++ b/runtime/ops/http.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::cell::RefCell;
use std::rc::Rc;
diff --git a/runtime/ops/mod.rs b/runtime/ops/mod.rs
index 0d285a808..ad650a776 100644
--- a/runtime/ops/mod.rs
+++ b/runtime/ops/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
pub mod bootstrap;
pub mod fs_events;
diff --git a/runtime/ops/os/mod.rs b/runtime/ops/os/mod.rs
index 7c61ee0ad..ef98a7990 100644
--- a/runtime/ops/os/mod.rs
+++ b/runtime/ops/os/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use super::utils::into_string;
use crate::permissions::PermissionsContainer;
diff --git a/runtime/ops/os/sys_info.rs b/runtime/ops/os/sys_info.rs
index b3d2cd743..c735ab5ca 100644
--- a/runtime/ops/os/sys_info.rs
+++ b/runtime/ops/os/sys_info.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
#[cfg(target_family = "windows")]
use std::sync::Once;
diff --git a/runtime/ops/permissions.rs b/runtime/ops/permissions.rs
index 8537a5787..e6c4261e3 100644
--- a/runtime/ops/permissions.rs
+++ b/runtime/ops/permissions.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::permissions::parse_sys_kind;
use crate::permissions::PermissionState;
diff --git a/runtime/ops/process.rs b/runtime/ops/process.rs
index e8dc9c690..5fee08383 100644
--- a/runtime/ops/process.rs
+++ b/runtime/ops/process.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use super::check_unstable;
use crate::permissions::PermissionsContainer;
diff --git a/runtime/ops/runtime.rs b/runtime/ops/runtime.rs
index fde3eeb2e..3f00142cb 100644
--- a/runtime/ops/runtime.rs
+++ b/runtime/ops/runtime.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::permissions::PermissionsContainer;
use deno_core::error::AnyError;
diff --git a/runtime/ops/signal.rs b/runtime/ops/signal.rs
index c0279a87c..01a07e52a 100644
--- a/runtime/ops/signal.rs
+++ b/runtime/ops/signal.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use deno_core::error::type_error;
use deno_core::error::AnyError;
use deno_core::op2;
diff --git a/runtime/ops/tty.rs b/runtime/ops/tty.rs
index b0047eb85..04192b90e 100644
--- a/runtime/ops/tty.rs
+++ b/runtime/ops/tty.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::io::Error;
diff --git a/runtime/ops/utils.rs b/runtime/ops/utils.rs
index e7bf02c10..d5ce61c1f 100644
--- a/runtime/ops/utils.rs
+++ b/runtime/ops/utils.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use deno_core::error::custom_error;
use deno_core::error::AnyError;
diff --git a/runtime/ops/web_worker.rs b/runtime/ops/web_worker.rs
index 59c57b1b6..8052856da 100644
--- a/runtime/ops/web_worker.rs
+++ b/runtime/ops/web_worker.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
mod sync_fetch;
diff --git a/runtime/ops/web_worker/sync_fetch.rs b/runtime/ops/web_worker/sync_fetch.rs
index ec79118b2..b8a588624 100644
--- a/runtime/ops/web_worker/sync_fetch.rs
+++ b/runtime/ops/web_worker/sync_fetch.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::sync::Arc;
diff --git a/runtime/ops/worker_host.rs b/runtime/ops/worker_host.rs
index b2ea1affe..ee9f0dc5e 100644
--- a/runtime/ops/worker_host.rs
+++ b/runtime/ops/worker_host.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::ops::TestingFeaturesEnabled;
use crate::permissions::create_child_permissions;
diff --git a/runtime/permissions/mod.rs b/runtime/permissions/mod.rs
index 7677b5c36..7740a8e31 100644
--- a/runtime/permissions/mod.rs
+++ b/runtime/permissions/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::colors;
use crate::fs_util::resolve_from_cwd;
diff --git a/runtime/permissions/prompter.rs b/runtime/permissions/prompter.rs
index 78761aa32..f0c3bbad3 100644
--- a/runtime/permissions/prompter.rs
+++ b/runtime/permissions/prompter.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::colors;
use deno_core::error::AnyError;
diff --git a/runtime/shared.rs b/runtime/shared.rs
index e7ba109b0..7dddbf9ec 100644
--- a/runtime/shared.rs
+++ b/runtime/shared.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Utilities shared between `build.rs` and the rest of the crate.
use deno_ast::MediaType;
diff --git a/runtime/snapshot.rs b/runtime/snapshot.rs
index 6a9fb4a2b..978f3d70e 100644
--- a/runtime/snapshot.rs
+++ b/runtime/snapshot.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::ops;
use crate::ops::bootstrap::SnapshotOptions;
diff --git a/runtime/tokio_util.rs b/runtime/tokio_util.rs
index 4ae4f2c38..6ae81167e 100644
--- a/runtime/tokio_util.rs
+++ b/runtime/tokio_util.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::fmt::Debug;
use std::str::FromStr;
diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs
index 308c294ef..8287dcae6 100644
--- a/runtime/web_worker.rs
+++ b/runtime/web_worker.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::colors;
use crate::inspector_server::InspectorServer;
use crate::ops;
diff --git a/runtime/worker.rs b/runtime/worker.rs
index f48f81fe7..95c6e6638 100644
--- a/runtime/worker.rs
+++ b/runtime/worker.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::rc::Rc;
use std::sync::atomic::AtomicBool;
use std::sync::atomic::AtomicI32;
diff --git a/runtime/worker_bootstrap.rs b/runtime/worker_bootstrap.rs
index 8f7f05888..aac665b05 100644
--- a/runtime/worker_bootstrap.rs
+++ b/runtime/worker_bootstrap.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use deno_core::v8;
use deno_core::ModuleSpecifier;