summaryrefslogtreecommitdiff
path: root/tools/release
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-01-01 14:58:21 -0500
committerGitHub <noreply@github.com>2024-01-01 19:58:21 +0000
commit7e72f3af6152d4b62c2ea94d025dfa297a6b0cb4 (patch)
tree76753f501bbede065efca7a0b62b823d64a2d9de /tools/release
parent8ba828b41e2609c91d993aec464035d62320fdad (diff)
chore: update copyright to 2024 (#21753)
Diffstat (limited to 'tools/release')
-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
8 files changed, 8 insertions, 8 deletions
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";