summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-01-02 16:00:42 -0500
committerGitHub <noreply@github.com>2023-01-02 21:00:42 +0000
commit10e4b2e14046b74469f7310c599579a6611513fe (patch)
treef6e446cb97d1df8b7413f3bf3a9c897ff487b275 /tools
parentf729576b2db2aa6ce000a598ad2e45533f686213 (diff)
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/build_benchmark_jsons.js2
-rwxr-xr-xtools/flamebench.js2
-rwxr-xr-xtools/format.js2
-rwxr-xr-xtools/lint.js2
-rwxr-xr-xtools/napi/generate_symbols_lists.js2
-rwxr-xr-xtools/release/00_start_release.ts2
-rwxr-xr-xtools/release/01_bump_crate_versions.ts2
-rwxr-xr-xtools/release/02_create_pr.ts2
-rwxr-xr-xtools/release/03_publish_crates.ts2
-rwxr-xr-xtools/release/04_post_publish.ts2
-rwxr-xr-xtools/release/05_create_release_notes.ts2
-rw-r--r--tools/release/deno_workspace.ts2
-rw-r--r--tools/release/deps.ts2
-rw-r--r--tools/util.js2
-rwxr-xr-xtools/wgpu_sync.js2
-rwxr-xr-xtools/wpt.ts2
-rw-r--r--tools/wpt/runner.ts2
-rw-r--r--tools/wpt/testharnessreport.js2
-rw-r--r--tools/wpt/utils.ts2
19 files changed, 19 insertions, 19 deletions
diff --git a/tools/build_benchmark_jsons.js b/tools/build_benchmark_jsons.js
index d281e7042..ee424c680 100755
--- a/tools/build_benchmark_jsons.js
+++ b/tools/build_benchmark_jsons.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.
import { buildPath, existsSync, join } from "./util.js";
const currentDataFile = join(buildPath(), "bench.json");
diff --git a/tools/flamebench.js b/tools/flamebench.js
index 7c79bd10f..e471d2891 100755
--- a/tools/flamebench.js
+++ b/tools/flamebench.js
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run --unstable --allow-read --allow-run
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { join, ROOT_PATH as ROOT } from "./util.js";
async function bashOut(subcmd) {
diff --git a/tools/format.js b/tools/format.js
index b13159613..223eb1b0d 100755
--- a/tools/format.js
+++ b/tools/format.js
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run --unstable --allow-write --allow-read --allow-run
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { getPrebuiltToolPath, join, ROOT_PATH } from "./util.js";
async function dprint() {
diff --git a/tools/lint.js b/tools/lint.js
index baa1e9c3c..c460951f5 100755
--- a/tools/lint.js
+++ b/tools/lint.js
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run --unstable --allow-write --allow-read --allow-run
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import {
buildMode,
getPrebuiltToolPath,
diff --git a/tools/napi/generate_symbols_lists.js b/tools/napi/generate_symbols_lists.js
index 2da9ccff7..9c334c00c 100755
--- a/tools/napi/generate_symbols_lists.js
+++ b/tools/napi/generate_symbols_lists.js
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run --unstable --allow-read --allow-write
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import exports from "../../cli/napi/sym/symbol_exports.json" assert {
type: "json",
diff --git a/tools/release/00_start_release.ts b/tools/release/00_start_release.ts
index b98fc147f..1e61c3aa5 100755
--- a/tools/release/00_start_release.ts
+++ b/tools/release/00_start_release.ts
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run -A --quiet --lock=tools/deno.lock.json
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { $, createOctoKit, semver } from "./deps.ts";
const currentDirPath = $.path.dirname($.path.fromFileUrl(import.meta.url));
diff --git a/tools/release/01_bump_crate_versions.ts b/tools/release/01_bump_crate_versions.ts
index 75daaf3f5..50d2cc5b2 100755
--- a/tools/release/01_bump_crate_versions.ts
+++ b/tools/release/01_bump_crate_versions.ts
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run -A --lock=tools/deno.lock.json
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { DenoWorkspace } from "./deno_workspace.ts";
import { $, GitLogOutput, semver } from "./deps.ts";
diff --git a/tools/release/02_create_pr.ts b/tools/release/02_create_pr.ts
index 18c1bc582..619c7081e 100755
--- a/tools/release/02_create_pr.ts
+++ b/tools/release/02_create_pr.ts
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run -A --lock=tools/deno.lock.json
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { DenoWorkspace } from "./deno_workspace.ts";
import { $, createOctoKit, getGitHubRepository } from "./deps.ts";
diff --git a/tools/release/03_publish_crates.ts b/tools/release/03_publish_crates.ts
index 4e149d3b9..606f6dc18 100755
--- a/tools/release/03_publish_crates.ts
+++ b/tools/release/03_publish_crates.ts
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run -A --lock=tools/deno.lock.json
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { DenoWorkspace } from "./deno_workspace.ts";
import { $, getCratesPublishOrder } from "./deps.ts";
diff --git a/tools/release/04_post_publish.ts b/tools/release/04_post_publish.ts
index 03b005db5..deadac80b 100755
--- a/tools/release/04_post_publish.ts
+++ b/tools/release/04_post_publish.ts
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run -A --lock=tools/deno.lock.json
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { DenoWorkspace } from "./deno_workspace.ts";
import { $, createOctoKit, getGitHubRepository } from "./deps.ts";
diff --git a/tools/release/05_create_release_notes.ts b/tools/release/05_create_release_notes.ts
index 26667b5ef..f3dba984a 100755
--- a/tools/release/05_create_release_notes.ts
+++ b/tools/release/05_create_release_notes.ts
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run -A --lock=tools/deno.lock.json
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { $ } from "./deps.ts";
import { DenoWorkspace } from "./deno_workspace.ts";
diff --git a/tools/release/deno_workspace.ts b/tools/release/deno_workspace.ts
index 892986ac0..7485ff02a 100644
--- a/tools/release/deno_workspace.ts
+++ b/tools/release/deno_workspace.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.
import { $, ReleasesMdFile, Repo } from "./deps.ts";
diff --git a/tools/release/deps.ts b/tools/release/deps.ts
index 976a83733..7b7a768ff 100644
--- a/tools/release/deps.ts
+++ b/tools/release/deps.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.
export * from "https://raw.githubusercontent.com/denoland/automation/0.16.0/mod.ts";
export * from "https://raw.githubusercontent.com/denoland/automation/0.16.0/github_actions.ts";
diff --git a/tools/util.js b/tools/util.js
index 49279df58..ce3ea65d4 100644
--- a/tools/util.js
+++ b/tools/util.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.
import {
dirname,
fromFileUrl,
diff --git a/tools/wgpu_sync.js b/tools/wgpu_sync.js
index 7548c5515..ba3267042 100755
--- a/tools/wgpu_sync.js
+++ b/tools/wgpu_sync.js
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run --unstable --allow-read --allow-write --allow-run
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { join, ROOT_PATH } from "./util.js";
diff --git a/tools/wpt.ts b/tools/wpt.ts
index b1067655c..5cd97ac39 100755
--- a/tools/wpt.ts
+++ b/tools/wpt.ts
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// This script is used to run WPT tests for Deno.
diff --git a/tools/wpt/runner.ts b/tools/wpt/runner.ts
index 517ce42b5..ce6d41841 100644
--- a/tools/wpt/runner.ts
+++ b/tools/wpt/runner.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.
import { delay, join, ROOT_PATH, TextLineStream, toFileUrl } from "../util.js";
import { assert, denoBinary, ManifestTestOptions, runPy } from "./utils.ts";
import { DOMParser } from "https://deno.land/x/deno_dom@v0.1.3-alpha2/deno-dom-wasm.ts";
diff --git a/tools/wpt/testharnessreport.js b/tools/wpt/testharnessreport.js
index a07c916c7..0da8d97dc 100644
--- a/tools/wpt/testharnessreport.js
+++ b/tools/wpt/testharnessreport.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.
window.add_result_callback(({ message, name, stack, status }) => {
const data = new TextEncoder().encode(
diff --git a/tools/wpt/utils.ts b/tools/wpt/utils.ts
index 7614a0c55..47cb8c5ec 100644
--- a/tools/wpt/utils.ts
+++ b/tools/wpt/utils.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.
/// FLAGS
import { parse } from "../../test_util/std/flags/mod.ts";