diff --git a/deno.json b/deno.json index 5d9909b52b8..1d160a5037b 100644 --- a/deno.json +++ b/deno.json @@ -8,7 +8,7 @@ "./www" ], "name": "@fresh/core", - "version": "2.0.0-alpha.44", + "version": "2.0.0-alpha.45", "license": "MIT", "exports": { ".": "./src/mod.ts", diff --git a/init/deno.json b/init/deno.json index a6e9fa194a3..67a7b68c6f0 100644 --- a/init/deno.json +++ b/init/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/init", - "version": "2.0.0-alpha.44", + "version": "2.0.0-alpha.45", "license": "MIT", "exports": "./src/mod.ts", "exclude": ["**/tmp/*"], diff --git a/init/src/init.ts b/init/src/init.ts index 82a4574a50b..2877980016c 100644 --- a/init/src/init.ts +++ b/init/src/init.ts @@ -3,7 +3,7 @@ import * as colors from "@std/fmt/colors"; import * as path from "@std/path"; // Keep these as is, as we replace these version in our release script -const FRESH_VERSION = "2.0.0-alpha.44"; +const FRESH_VERSION = "2.0.0-alpha.45"; const FRESH_TAILWIND_VERSION = "0.0.1-alpha.9"; const PREACT_VERSION = "10.26.9"; const PREACT_SIGNALS_VERSION = "2.2.1"; diff --git a/update/deno.json b/update/deno.json index c31014bb368..aee66667f0f 100644 --- a/update/deno.json +++ b/update/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/update", - "version": "2.0.0-alpha.44", + "version": "2.0.0-alpha.45", "license": "MIT", "exports": "./src/mod.ts", "exclude": ["**/tmp/*"], diff --git a/update/src/update.ts b/update/src/update.ts index 83e71ba284f..30a280ebac5 100644 --- a/update/src/update.ts +++ b/update/src/update.ts @@ -6,7 +6,7 @@ import { ProgressBar } from "@std/cli/unstable-progress-bar"; export const SyntaxKind = tsmorph.ts.SyntaxKind; -export const FRESH_VERSION = "2.0.0-alpha.44"; +export const FRESH_VERSION = "2.0.0-alpha.45"; export const PREACT_VERSION = "10.26.9"; export const PREACT_SIGNALS_VERSION = "2.2.1";