Skip to content

Commit 0864559

Browse files
authored
2.0.0-alpha.27 (#2791)
1 parent ae9c675 commit 0864559

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"./www"
88
],
99
"name": "@fresh/core",
10-
"version": "2.0.0-alpha.26",
10+
"version": "2.0.0-alpha.27",
1111
"license": "MIT",
1212
"exports": {
1313
".": "./src/mod.ts",

init/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/init",
3-
"version": "2.0.0-alpha.26",
3+
"version": "2.0.0-alpha.27",
44
"license": "MIT",
55
"exports": {
66
".": "./src/mod.ts"

init/src/init.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import * as colors from "@std/fmt/colors";
22
import * as path from "@std/path";
33

44
// Keep these as is, as we replace these version in our release script
5-
const FRESH_VERSION = "2.0.0-alpha.26";
5+
const FRESH_VERSION = "2.0.0-alpha.27";
66
const FRESH_TAILWIND_VERSION = "0.0.1-alpha.7";
7-
const PREACT_VERSION = "10.24.3";
8-
const PREACT_SIGNALS_VERSION = "1.3.0";
7+
const PREACT_VERSION = "10.25.2";
8+
const PREACT_SIGNALS_VERSION = "1.3.1";
99

1010
export const enum InitStep {
1111
ProjectName = "ProjectName",

update/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/update",
3-
"version": "2.0.0-alpha.26",
3+
"version": "2.0.0-alpha.27",
44
"license": "MIT",
55
"exports": {
66
".": "./src/mod.ts"

update/src/update.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import * as tsmorph from "ts-morph";
44

55
export const SyntaxKind = tsmorph.ts.SyntaxKind;
66

7-
export const FRESH_VERSION = "2.0.0-alpha.26";
8-
export const PREACT_VERSION = "10.25.1";
7+
export const FRESH_VERSION = "2.0.0-alpha.27";
8+
export const PREACT_VERSION = "10.25.2";
99
export const PREACT_SIGNALS_VERSION = "1.3.1";
1010

1111
export interface DenoJson {

0 commit comments

Comments
 (0)