diff --git a/deno.json b/deno.json index 11f9eb0b3f1..ed4ca31d85a 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/core", - "version": "2.0.0-alpha.23", + "version": "2.0.0-alpha.24", "license": "MIT", "exports": { ".": "./src/mod.ts", diff --git a/init/deno.json b/init/deno.json index 408767af82a..a754a804ff2 100644 --- a/init/deno.json +++ b/init/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/init", - "version": "2.0.0-alpha.23", + "version": "2.0.0-alpha.24", "license": "MIT", "exports": { ".": "./src/mod.ts" diff --git a/init/src/init.ts b/init/src/init.ts index 0bda9fc1a9c..9714f3d1ca9 100644 --- a/init/src/init.ts +++ b/init/src/init.ts @@ -2,7 +2,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.23"; +const FRESH_VERSION = "2.0.0-alpha.24"; const FRESH_TAILWIND_VERSION = "0.0.1-alpha.7"; const PREACT_VERSION = "10.24.3"; const PREACT_SIGNALS_VERSION = "1.3.0"; diff --git a/update/deno.json b/update/deno.json index 25c05b0c10c..82745b4786f 100644 --- a/update/deno.json +++ b/update/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/update", - "version": "2.0.0-alpha.23", + "version": "2.0.0-alpha.24", "license": "MIT", "exports": { ".": "./src/mod.ts" diff --git a/update/src/update.ts b/update/src/update.ts index 3646d85c4da..0230cea498d 100644 --- a/update/src/update.ts +++ b/update/src/update.ts @@ -4,7 +4,7 @@ import * as tsmorph from "ts-morph"; export const SyntaxKind = tsmorph.ts.SyntaxKind; -export const FRESH_VERSION = "2.0.0-alpha.23"; +export const FRESH_VERSION = "2.0.0-alpha.24"; export const PREACT_VERSION = "10.24.3"; export const PREACT_SIGNALS_VERSION = "1.3.0";