diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-01 14:58:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-01 19:58:21 +0000 |
commit | 7e72f3af6152d4b62c2ea94d025dfa297a6b0cb4 (patch) | |
tree | 76753f501bbede065efca7a0b62b823d64a2d9de /ext/kv | |
parent | 8ba828b41e2609c91d993aec464035d62320fdad (diff) |
chore: update copyright to 2024 (#21753)
Diffstat (limited to 'ext/kv')
-rw-r--r-- | ext/kv/01_db.ts | 2 | ||||
-rw-r--r-- | ext/kv/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/kv/dynamic.rs | 2 | ||||
-rw-r--r-- | ext/kv/interface.rs | 2 | ||||
-rw-r--r-- | ext/kv/lib.rs | 2 | ||||
-rw-r--r-- | ext/kv/remote.rs | 2 | ||||
-rw-r--r-- | ext/kv/sqlite.rs | 2 | ||||
-rw-r--r-- | ext/kv/time.rs | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/ext/kv/01_db.ts b/ext/kv/01_db.ts index 99efad844..b0757a195 100644 --- a/ext/kv/01_db.ts +++ b/ext/kv/01_db.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. // @ts-ignore internal api const { diff --git a/ext/kv/Cargo.toml b/ext/kv/Cargo.toml index c4fb7d834..78f7fa198 100644 --- a/ext/kv/Cargo.toml +++ b/ext/kv/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_kv" diff --git a/ext/kv/dynamic.rs b/ext/kv/dynamic.rs index c8dd6640c..6d545d79f 100644 --- a/ext/kv/dynamic.rs +++ b/ext/kv/dynamic.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/ext/kv/interface.rs b/ext/kv/interface.rs index d7aa68368..9737a9366 100644 --- a/ext/kv/interface.rs +++ b/ext/kv/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 std::cell::RefCell; use std::rc::Rc; diff --git a/ext/kv/lib.rs b/ext/kv/lib.rs index 032a16863..1286a7323 100644 --- a/ext/kv/lib.rs +++ b/ext/kv/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 mod dynamic; mod interface; diff --git a/ext/kv/remote.rs b/ext/kv/remote.rs index ceda24528..007f6aff6 100644 --- a/ext/kv/remote.rs +++ b/ext/kv/remote.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::marker::PhantomData; diff --git a/ext/kv/sqlite.rs b/ext/kv/sqlite.rs index e0facace4..d42f8988e 100644 --- a/ext/kv/sqlite.rs +++ b/ext/kv/sqlite.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::collections::HashMap; diff --git a/ext/kv/time.rs b/ext/kv/time.rs index 60375818b..c39882f7b 100644 --- a/ext/kv/time.rs +++ b/ext/kv/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. |