From 0864559562edb2b3b5cfeb49eadb3e02abf7afe4 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Thu, 12 Dec 2024 14:08:25 +0100 Subject: [PATCH] 2.0.0-alpha.27 (#2791) --- deno.json | 2 +- init/deno.json | 2 +- init/src/init.ts | 6 +++--- update/deno.json | 2 +- update/src/update.ts | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/deno.json b/deno.json index 1a9fe82e480..3f0187f649c 100644 --- a/deno.json +++ b/deno.json @@ -7,7 +7,7 @@ "./www" ], "name": "@fresh/core", - "version": "2.0.0-alpha.26", + "version": "2.0.0-alpha.27", "license": "MIT", "exports": { ".": "./src/mod.ts", diff --git a/init/deno.json b/init/deno.json index b7d5df62704..ea058f67b1f 100644 --- a/init/deno.json +++ b/init/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/init", - "version": "2.0.0-alpha.26", + "version": "2.0.0-alpha.27", "license": "MIT", "exports": { ".": "./src/mod.ts" diff --git a/init/src/init.ts b/init/src/init.ts index 7c40091561d..c8d44df7f91 100644 --- a/init/src/init.ts +++ b/init/src/init.ts @@ -2,10 +2,10 @@ 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.26"; +const FRESH_VERSION = "2.0.0-alpha.27"; const FRESH_TAILWIND_VERSION = "0.0.1-alpha.7"; -const PREACT_VERSION = "10.24.3"; -const PREACT_SIGNALS_VERSION = "1.3.0"; +const PREACT_VERSION = "10.25.2"; +const PREACT_SIGNALS_VERSION = "1.3.1"; export const enum InitStep { ProjectName = "ProjectName", diff --git a/update/deno.json b/update/deno.json index 2c906380bad..176aa7a0c93 100644 --- a/update/deno.json +++ b/update/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/update", - "version": "2.0.0-alpha.26", + "version": "2.0.0-alpha.27", "license": "MIT", "exports": { ".": "./src/mod.ts" diff --git a/update/src/update.ts b/update/src/update.ts index b1ee9f5d8bb..8924ceafc80 100644 --- a/update/src/update.ts +++ b/update/src/update.ts @@ -4,8 +4,8 @@ import * as tsmorph from "ts-morph"; export const SyntaxKind = tsmorph.ts.SyntaxKind; -export const FRESH_VERSION = "2.0.0-alpha.26"; -export const PREACT_VERSION = "10.25.1"; +export const FRESH_VERSION = "2.0.0-alpha.27"; +export const PREACT_VERSION = "10.25.2"; export const PREACT_SIGNALS_VERSION = "1.3.1"; export interface DenoJson {