From 3c4c29ca96ae701bb006349539c27df007366cab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 27 Apr 2026 17:21:08 +0200 Subject: [PATCH] chore: release 2.3.1 Bump @fresh/core, @fresh/init, and @fresh/update to 2.3.1. Bump @fresh/plugin-vite to 1.1.0 and @fresh/plugin-tailwind-v3 to 1.1.0. These plugin packages were not published during 2.3.0 despite having significant changes merged, including immutable caching for Vite assets. --- packages/fresh/deno.json | 2 +- packages/init/deno.json | 2 +- packages/init/src/init.ts | 4 ++-- packages/plugin-tailwindcss-v3/deno.json | 2 +- packages/plugin-vite/deno.json | 2 +- packages/update/deno.json | 2 +- packages/update/src/update.ts | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/fresh/deno.json b/packages/fresh/deno.json index 7057be7ef5d..b827e06be53 100644 --- a/packages/fresh/deno.json +++ b/packages/fresh/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/core", - "version": "2.3.0", + "version": "2.3.1", "license": "MIT", "exports": { ".": "./src/mod.ts", diff --git a/packages/init/deno.json b/packages/init/deno.json index 983b05170c6..503f03ed167 100644 --- a/packages/init/deno.json +++ b/packages/init/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/init", - "version": "2.3.0", + "version": "2.3.1", "license": "MIT", "exports": { ".": "./src/mod.ts", diff --git a/packages/init/src/init.ts b/packages/init/src/init.ts index 5acb3f82224..5d4711da69f 100644 --- a/packages/init/src/init.ts +++ b/packages/init/src/init.ts @@ -5,9 +5,9 @@ import * as semver from "@std/semver"; import initConfig from "../deno.json" with { type: "json" }; // Keep these as is, as we replace these version in our release script -const FRESH_VERSION = "2.3.0"; +const FRESH_VERSION = "2.3.1"; const FRESH_TAILWIND_VERSION = "1.0.0"; -const FRESH_VITE_PLUGIN = "1.0.0"; +const FRESH_VITE_PLUGIN = "1.1.0"; const PREACT_VERSION = "10.29.1"; const PREACT_SIGNALS_VERSION = "2.9.0"; const TAILWINDCSS_VERSION = "4.1.10"; diff --git a/packages/plugin-tailwindcss-v3/deno.json b/packages/plugin-tailwindcss-v3/deno.json index 9e730a42f0e..3cdd062ffa7 100644 --- a/packages/plugin-tailwindcss-v3/deno.json +++ b/packages/plugin-tailwindcss-v3/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/plugin-tailwind-v3", - "version": "1.0.1", + "version": "1.1.0", "license": "MIT", "exports": "./src/mod.ts", "imports": { diff --git a/packages/plugin-vite/deno.json b/packages/plugin-vite/deno.json index ca6df6a1c40..b4ddd43fe4c 100644 --- a/packages/plugin-vite/deno.json +++ b/packages/plugin-vite/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/plugin-vite", - "version": "1.0.8", + "version": "1.1.0", "license": "MIT", "exports": { ".": "./src/mod.ts", diff --git a/packages/update/deno.json b/packages/update/deno.json index a38d362e188..202b08fa601 100644 --- a/packages/update/deno.json +++ b/packages/update/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/update", - "version": "2.3.0", + "version": "2.3.1", "license": "MIT", "exports": "./src/mod.ts", "exclude": ["**/tmp/*"], diff --git a/packages/update/src/update.ts b/packages/update/src/update.ts index 21029e6c549..35427395175 100644 --- a/packages/update/src/update.ts +++ b/packages/update/src/update.ts @@ -7,7 +7,7 @@ import { walk } from "@std/fs/walk"; export const SyntaxKind = tsmorph.ts.SyntaxKind; -export const FRESH_VERSION = "2.3.0"; +export const FRESH_VERSION = "2.3.1"; export const PREACT_VERSION = "10.29.1"; export const PREACT_SIGNALS_VERSION = "2.9.0";