diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/release/01_bump_dependency_crate_versions.ts | 2 | ||||
-rwxr-xr-x | tools/release/02_publish_dependency_crates.ts | 2 | ||||
-rwxr-xr-x | tools/release/03_bump_cli_version.ts | 2 | ||||
-rw-r--r-- | tools/release/helpers/cargo.ts | 2 | ||||
-rw-r--r-- | tools/release/helpers/crates_io.ts | 2 | ||||
-rw-r--r-- | tools/release/helpers/deno_workspace.ts | 2 | ||||
-rw-r--r-- | tools/release/helpers/helpers.ts | 2 | ||||
-rw-r--r-- | tools/release/helpers/mod.ts | 2 | ||||
-rwxr-xr-x | tools/wpt.ts | 2 | ||||
-rw-r--r-- | tools/wpt/runner.ts | 2 | ||||
-rw-r--r-- | tools/wpt/utils.ts | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/tools/release/01_bump_dependency_crate_versions.ts b/tools/release/01_bump_dependency_crate_versions.ts index b5ee6968d..61555f831 100755 --- a/tools/release/01_bump_dependency_crate_versions.ts +++ b/tools/release/01_bump_dependency_crate_versions.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --allow-read --allow-write --allow-run=cargo -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. import { DenoWorkspace } from "./helpers/mod.ts"; const workspace = await DenoWorkspace.load(); diff --git a/tools/release/02_publish_dependency_crates.ts b/tools/release/02_publish_dependency_crates.ts index d325f86a2..44b5fe969 100755 --- a/tools/release/02_publish_dependency_crates.ts +++ b/tools/release/02_publish_dependency_crates.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --allow-read --allow-write --allow-run=cargo --allow-net=crates.io -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. import { DenoWorkspace, getCratesPublishOrder } from "./helpers/mod.ts"; const workspace = await DenoWorkspace.load(); diff --git a/tools/release/03_bump_cli_version.ts b/tools/release/03_bump_cli_version.ts index b62e2b059..e2a64ede0 100755 --- a/tools/release/03_bump_cli_version.ts +++ b/tools/release/03_bump_cli_version.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --allow-read --allow-write --allow-run=cargo,git -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. import { DenoWorkspace, formatGitLogForMarkdown, diff --git a/tools/release/helpers/cargo.ts b/tools/release/helpers/cargo.ts index 2f750779c..15dd0c5b6 100644 --- a/tools/release/helpers/cargo.ts +++ b/tools/release/helpers/cargo.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. import { runCommand } from "./helpers.ts"; diff --git a/tools/release/helpers/crates_io.ts b/tools/release/helpers/crates_io.ts index b26539964..af26f55af 100644 --- a/tools/release/helpers/crates_io.ts +++ b/tools/release/helpers/crates_io.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. export interface CratesIoMetadata { crate: { diff --git a/tools/release/helpers/deno_workspace.ts b/tools/release/helpers/deno_workspace.ts index d15209adc..6d7a03cb7 100644 --- a/tools/release/helpers/deno_workspace.ts +++ b/tools/release/helpers/deno_workspace.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. import * as path from "https://deno.land/std@0.105.0/path/mod.ts"; import * as semver from "https://deno.land/x/semver@v1.4.0/mod.ts"; diff --git a/tools/release/helpers/helpers.ts b/tools/release/helpers/helpers.ts index adb6eb83e..454a66373 100644 --- a/tools/release/helpers/helpers.ts +++ b/tools/release/helpers/helpers.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. import type { DenoWorkspaceCrate } from "./deno_workspace.ts"; diff --git a/tools/release/helpers/mod.ts b/tools/release/helpers/mod.ts index f9d23ac83..2cf00c352 100644 --- a/tools/release/helpers/mod.ts +++ b/tools/release/helpers/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. export * from "./cargo.ts"; export * from "./crates_io.ts"; diff --git a/tools/wpt.ts b/tools/wpt.ts index b582219fa..0563a05ce 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-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 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 b7a51af9d..5e0285e77 100644 --- a/tools/wpt/runner.ts +++ b/tools/wpt/runner.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. import { delay, join, readLines, ROOT_PATH, 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/utils.ts b/tools/wpt/utils.ts index a5e762527..f64e20f8f 100644 --- a/tools/wpt/utils.ts +++ b/tools/wpt/utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. /// FLAGS import { parse } from "../../test_util/std/flags/mod.ts"; |