diff --git a/deno.json b/deno.json index 6ff43ab6a87..70c27fb829a 100644 --- a/deno.json +++ b/deno.json @@ -10,7 +10,7 @@ "./www" ], "name": "@fresh/core", - "version": "2.0.0-alpha.54", + "version": "2.0.0-alpha.55", "license": "MIT", "exports": { ".": "./src/mod.ts", diff --git a/init/deno.json b/init/deno.json index 12a6e5aa486..123294c9862 100644 --- a/init/deno.json +++ b/init/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/init", - "version": "2.0.0-alpha.54", + "version": "2.0.0-alpha.55", "license": "MIT", "exports": "./src/mod.ts", "exclude": ["**/tmp/*"], diff --git a/init/src/init.ts b/init/src/init.ts index f1dac5ccd5e..a24fe87e35b 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.54"; +const FRESH_VERSION = "2.0.0-alpha.55"; const FRESH_TAILWIND_VERSION = "0.0.1-alpha.9"; const PREACT_VERSION = "10.27.0"; const PREACT_SIGNALS_VERSION = "2.2.1"; diff --git a/update/deno.json b/update/deno.json index e9464f2b5ea..d910f00d15c 100644 --- a/update/deno.json +++ b/update/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/update", - "version": "2.0.0-alpha.54", + "version": "2.0.0-alpha.55", "license": "MIT", "exports": "./src/mod.ts", "exclude": ["**/tmp/*"], diff --git a/update/src/update.ts b/update/src/update.ts index 7074ba6fdde..3c67cdb44f0 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.54"; +export const FRESH_VERSION = "2.0.0-alpha.55"; export const PREACT_VERSION = "10.27.0"; export const PREACT_SIGNALS_VERSION = "2.2.1";