summaryrefslogtreecommitdiff
path: root/ext/cron
diff options
context:
space:
mode:
Diffstat (limited to 'ext/cron')
-rw-r--r--ext/cron/01_cron.ts2
-rw-r--r--ext/cron/Cargo.toml2
-rw-r--r--ext/cron/interface.rs2
-rw-r--r--ext/cron/lib.rs2
-rw-r--r--ext/cron/local.rs2
-rw-r--r--ext/cron/time.rs2
6 files changed, 6 insertions, 6 deletions
diff --git a/ext/cron/01_cron.ts b/ext/cron/01_cron.ts
index 07b2f26eb..1aa39cd45 100644
--- a/ext/cron/01_cron.ts
+++ b/ext/cron/01_cron.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.
import { core, internals } from "ext:core/mod.js";
const {
diff --git a/ext/cron/Cargo.toml b/ext/cron/Cargo.toml
index 59f4ac55b..c99dfa2b0 100644
--- a/ext/cron/Cargo.toml
+++ b/ext/cron/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_cron"
diff --git a/ext/cron/interface.rs b/ext/cron/interface.rs
index c70988788..01b1d1789 100644
--- a/ext/cron/interface.rs
+++ b/ext/cron/interface.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 async_trait::async_trait;
use deno_core::error::AnyError;
diff --git a/ext/cron/lib.rs b/ext/cron/lib.rs
index c49659703..4f4d0e05c 100644
--- a/ext/cron/lib.rs
+++ b/ext/cron/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.
mod interface;
pub mod local;
diff --git a/ext/cron/local.rs b/ext/cron/local.rs
index 5f1ace6d1..cc3f57569 100644
--- a/ext/cron/local.rs
+++ b/ext/cron/local.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::OnceCell;
use std::cell::RefCell;
diff --git a/ext/cron/time.rs b/ext/cron/time.rs
index 60375818b..c39882f7b 100644
--- a/ext/cron/time.rs
+++ b/ext/cron/time.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.
/// Identical to chrono::Utc::now() but without the system "clock"
/// feature flag.