summaryrefslogtreecommitdiff
path: root/ext/kv
diff options
context:
space:
mode:
Diffstat (limited to 'ext/kv')
-rw-r--r--ext/kv/01_db.ts2
-rw-r--r--ext/kv/Cargo.toml2
-rw-r--r--ext/kv/dynamic.rs2
-rw-r--r--ext/kv/interface.rs2
-rw-r--r--ext/kv/lib.rs2
-rw-r--r--ext/kv/remote.rs2
-rw-r--r--ext/kv/sqlite.rs2
-rw-r--r--ext/kv/time.rs2
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.