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 /tools | |
parent | 8ba828b41e2609c91d993aec464035d62320fdad (diff) |
chore: update copyright to 2024 (#21753)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build_bench.ts | 2 | ||||
-rwxr-xr-x | tools/build_benchmark_jsons.js | 2 | ||||
-rw-r--r-- | tools/copyright_checker.js | 4 | ||||
-rwxr-xr-x | tools/format.js | 2 | ||||
-rwxr-xr-x | tools/install_prebuilt.js | 2 | ||||
-rwxr-xr-x | tools/lint.js | 2 | ||||
-rwxr-xr-x | tools/napi/generate_symbols_lists.js | 2 | ||||
-rwxr-xr-x | tools/node_compat/setup.ts | 2 | ||||
-rwxr-xr-x | tools/release/00_start_release.ts | 2 | ||||
-rwxr-xr-x | tools/release/01_bump_crate_versions.ts | 2 | ||||
-rwxr-xr-x | tools/release/02_create_pr.ts | 2 | ||||
-rwxr-xr-x | tools/release/03_publish_crates.ts | 2 | ||||
-rwxr-xr-x | tools/release/04_post_publish.ts | 2 | ||||
-rwxr-xr-x | tools/release/05_create_release_notes.ts | 2 | ||||
-rw-r--r-- | tools/release/deno_workspace.ts | 2 | ||||
-rw-r--r-- | tools/release/deps.ts | 2 | ||||
-rw-r--r-- | tools/upload_wptfyi.js | 2 | ||||
-rw-r--r-- | tools/util.js | 2 | ||||
-rw-r--r-- | tools/verify_pr_title.js | 2 | ||||
-rw-r--r-- | tools/wgpu_sync.js | 2 | ||||
-rwxr-xr-x | tools/wpt.ts | 2 | ||||
-rw-r--r-- | tools/wpt/runner.ts | 2 | ||||
-rw-r--r-- | tools/wpt/testharnessreport.js | 2 | ||||
-rw-r--r-- | tools/wpt/utils.ts | 2 |
24 files changed, 25 insertions, 25 deletions
diff --git a/tools/build_bench.ts b/tools/build_bench.ts index dbbe02967..46075ccf0 100755 --- a/tools/build_bench.ts +++ b/tools/build_bench.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --unstable --allow-env --allow-read --allow-write --allow-run -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import $ from "https://deno.land/x/dax@0.32.0/mod.ts"; diff --git a/tools/build_benchmark_jsons.js b/tools/build_benchmark_jsons.js index ee424c680..64310f75a 100755 --- a/tools/build_benchmark_jsons.js +++ b/tools/build_benchmark_jsons.js @@ -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 { buildPath, existsSync, join } from "./util.js"; const currentDataFile = join(buildPath(), "bench.json"); diff --git a/tools/copyright_checker.js b/tools/copyright_checker.js index 2406f7990..5e415fcc9 100644 --- a/tools/copyright_checker.js +++ b/tools/copyright_checker.js @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --unstable --allow-read=. --allow-run=git -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { getSources, ROOT_PATH } from "./util.js"; @@ -49,7 +49,7 @@ export async function checkCopyright() { const ACCEPTABLE_LINES = /^(\/\/ deno-lint-.*|\/\/ Copyright.*|\/\/ Ported.*|\s*|#!\/.*)\n/; const COPYRIGHT_LINE = - "Copyright 2018-2023 the Deno authors. All rights reserved. MIT license."; + "Copyright 2018-2024 the Deno authors. All rights reserved. MIT license."; const TOML_COPYRIGHT_LINE = "# " + COPYRIGHT_LINE; const C_STYLE_COPYRIGHT_LINE = "// " + COPYRIGHT_LINE; diff --git a/tools/format.js b/tools/format.js index 98da6662b..05bfeba55 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 --allow-net -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { join, ROOT_PATH } from "./util.js"; const subcommand = Deno.args.includes("--check") ? "check" : "fmt"; diff --git a/tools/install_prebuilt.js b/tools/install_prebuilt.js index 831bda487..d8430b472 100755 --- a/tools/install_prebuilt.js +++ b/tools/install_prebuilt.js @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --unstable --allow-write --allow-read --allow-net -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { getPrebuilt } from "./util.js"; const args = Deno.args.slice(); diff --git a/tools/lint.js b/tools/lint.js index 4f10ec532..735da872e 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 --allow-net -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { buildMode, getPrebuilt, getSources, join, ROOT_PATH } from "./util.js"; import { checkCopyright } from "./copyright_checker.js"; diff --git a/tools/napi/generate_symbols_lists.js b/tools/napi/generate_symbols_lists.js index 01693f4e7..8a5592c51 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-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import exports from "../../cli/napi/sym/symbol_exports.json" assert { type: "json", diff --git a/tools/node_compat/setup.ts b/tools/node_compat/setup.ts index 17c716a08..867953ef9 100755 --- a/tools/node_compat/setup.ts +++ b/tools/node_compat/setup.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --allow-read=. --allow-write=. --allow-run=git -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. /** This copies the test files according to the config file `cli/tests/node_compat/config.jsonc` */ diff --git a/tools/release/00_start_release.ts b/tools/release/00_start_release.ts index e77d602b2..4488c781a 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-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { $, createOctoKit, semver } from "./deps.ts"; const currentDirPath = $.path(import.meta).parentOrThrow(); diff --git a/tools/release/01_bump_crate_versions.ts b/tools/release/01_bump_crate_versions.ts index c709ccc80..4f974e2d5 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-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 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 8402ece5b..af3f81f02 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-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 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 606f6dc18..dcad8ed92 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-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 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 0142ab84e..2fa9e7356 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-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 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 07759975d..9ea9ade31 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-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 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 580756007..e82f3fa18 100644 --- a/tools/release/deno_workspace.ts +++ b/tools/release/deno_workspace.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 { $, ReleasesMdFile, Repo } from "./deps.ts"; diff --git a/tools/release/deps.ts b/tools/release/deps.ts index baf479b64..568830a74 100644 --- a/tools/release/deps.ts +++ b/tools/release/deps.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. export * from "https://raw.githubusercontent.com/denoland/automation/0.19.0/mod.ts"; export * from "https://raw.githubusercontent.com/denoland/automation/0.19.0/github_actions.ts"; diff --git a/tools/upload_wptfyi.js b/tools/upload_wptfyi.js index 0b48c330c..b8f6d7c5a 100644 --- a/tools/upload_wptfyi.js +++ b/tools/upload_wptfyi.js @@ -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. // This script pushes new WPT results to wpt.fyi. When the `--ghstatus` flag is // passed, will automatically add a status check to the commit with a link to diff --git a/tools/util.js b/tools/util.js index 8fab4dfa3..e123b828b 100644 --- a/tools/util.js +++ b/tools/util.js @@ -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 { dirname, fromFileUrl, diff --git a/tools/verify_pr_title.js b/tools/verify_pr_title.js index ffae101ca..db3f23061 100644 --- a/tools/verify_pr_title.js +++ b/tools/verify_pr_title.js @@ -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. const prTitle = Deno.args[0]; if (prTitle == null) { diff --git a/tools/wgpu_sync.js b/tools/wgpu_sync.js index 590324465..4efb9c6b8 100644 --- 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-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 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 1867c1ed5..62fc7b539 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-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 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 472449712..47e6bb2f5 100644 --- a/tools/wpt/runner.ts +++ b/tools/wpt/runner.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 { 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 0da8d97dc..7cc6a9e2d 100644 --- a/tools/wpt/testharnessreport.js +++ b/tools/wpt/testharnessreport.js @@ -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. 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 33cb9782a..48a50a0e2 100644 --- a/tools/wpt/utils.ts +++ b/tools/wpt/utils.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. /// FLAGS import { parse } from "../../test_util/std/flags/mod.ts"; |