Skip to content

Commit 71e849c

Browse files
authored
chore: release 2.3.1 (#3792)
- Bump `@fresh/core` to `2.3.1` - Bump `@fresh/init` to `2.3.1` - Bump `@fresh/update` to `2.3.1` - Bump `@fresh/plugin-vite` from `1.0.8` to `1.1.0` - Bump `@fresh/plugin-tailwind-v3` from `1.0.1` to `1.1.0` The plugin packages were not published during the 2.3.0 release despite having significant changes merged. Notable fixes in `@fresh/plugin-vite` include immutable caching for Vite-built assets (#3761), CSS modules in layouts (#3764), and multiple `staticDir` support (#3759). Also updates `FRESH_VITE_PLUGIN` version constant in `@fresh/init` so new projects scaffold with the correct plugin version. Closes #3784
1 parent 46d62a0 commit 71e849c

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

packages/fresh/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/core",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"license": "MIT",
55
"exports": {
66
".": "./src/mod.ts",

packages/init/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/init",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"license": "MIT",
55
"exports": {
66
".": "./src/mod.ts",

packages/init/src/init.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import * as semver from "@std/semver";
55
import initConfig from "../deno.json" with { type: "json" };
66

77
// Keep these as is, as we replace these version in our release script
8-
const FRESH_VERSION = "2.3.0";
8+
const FRESH_VERSION = "2.3.1";
99
const FRESH_TAILWIND_VERSION = "1.0.0";
10-
const FRESH_VITE_PLUGIN = "1.0.0";
10+
const FRESH_VITE_PLUGIN = "1.1.0";
1111
const PREACT_VERSION = "10.29.1";
1212
const PREACT_SIGNALS_VERSION = "2.9.0";
1313
const TAILWINDCSS_VERSION = "4.1.10";

packages/update/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/update",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"license": "MIT",
55
"exports": "./src/mod.ts",
66
"exclude": ["**/tmp/*"],

packages/update/src/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { walk } from "@std/fs/walk";
77

88
export const SyntaxKind = tsmorph.ts.SyntaxKind;
99

10-
export const FRESH_VERSION = "2.3.0";
10+
export const FRESH_VERSION = "2.3.1";
1111
export const PREACT_VERSION = "10.29.1";
1212
export const PREACT_SIGNALS_VERSION = "2.9.0";
1313

0 commit comments

Comments
 (0)