summaryrefslogtreecommitdiff
path: root/ext/cache
diff options
context:
space:
mode:
Diffstat (limited to 'ext/cache')
-rw-r--r--ext/cache/01_cache.js2
-rw-r--r--ext/cache/Cargo.toml2
-rw-r--r--ext/cache/lib.deno_cache.d.ts2
-rw-r--r--ext/cache/lib.rs2
-rw-r--r--ext/cache/sqlite.rs2
5 files changed, 5 insertions, 5 deletions
diff --git a/ext/cache/01_cache.js b/ext/cache/01_cache.js
index 5c249f2f8..60ed1eb75 100644
--- a/ext/cache/01_cache.js
+++ b/ext/cache/01_cache.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml
index 651bfc727..64d66f8bb 100644
--- a/ext/cache/Cargo.toml
+++ b/ext/cache/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_cache"
diff --git a/ext/cache/lib.deno_cache.d.ts b/ext/cache/lib.deno_cache.d.ts
index 3b03512fc..0834d7f20 100644
--- a/ext/cache/lib.deno_cache.d.ts
+++ b/ext/cache/lib.deno_cache.d.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// deno-lint-ignore-file no-var
diff --git a/ext/cache/lib.rs b/ext/cache/lib.rs
index e6fdaa764..50a07b255 100644
--- a/ext/cache/lib.rs
+++ b/ext/cache/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
mod sqlite;
use deno_core::ByteString;
diff --git a/ext/cache/sqlite.rs b/ext/cache/sqlite.rs
index f1314516f..2d8e83f4b 100644
--- a/ext/cache/sqlite.rs
+++ b/ext/cache/sqlite.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use async_trait::async_trait;
use deno_core::error::AnyError;