From 7e72f3af6152d4b62c2ea94d025dfa297a6b0cb4 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 1 Jan 2024 14:58:21 -0500 Subject: chore: update copyright to 2024 (#21753) --- ext/cron/01_cron.ts | 2 +- ext/cron/Cargo.toml | 2 +- ext/cron/interface.rs | 2 +- ext/cron/lib.rs | 2 +- ext/cron/local.rs | 2 +- ext/cron/time.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'ext/cron') 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. -- cgit v1.2.3