diff --git a/action/deps.js b/action/deps.js index db3513b..0932da1 100644 --- a/action/deps.js +++ b/action/deps.js @@ -832,7 +832,7 @@ class TextLineStream extends TransformStream { }); } } -const VERSION = "1.12.0"; +const VERSION = "1.13.0"; const { Deno: Deno2 } = globalThis; const noColor = typeof Deno2?.noColor === "boolean" ? Deno2.noColor : false; let enabled = !noColor; diff --git a/deno.jsonc b/deno.jsonc index cfbd827..417bfdd 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,6 +1,6 @@ { "name": "@deno/deployctl", - "version": "1.12.0", + "version": "1.13.0", "exports": "./deployctl.ts", "fmt": { "exclude": ["action/node_modules/"] diff --git a/src/version.ts b/src/version.ts index b4c0ec9..908311b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,4 +1,4 @@ -export const VERSION = "1.12.0"; +export const VERSION = "1.13.0"; // Make sure to keep this in sync with the "old" version in `ci.yml` // Also don't forget to update README.md.