Skip to content

Commit

Permalink
2.0.0-alpha.27 (#2791)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato authored Dec 12, 2024
1 parent ae9c675 commit 0864559
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion init/deno.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 3 additions & 3 deletions init/src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion update/deno.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions update/src/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 0864559

Please sign in to comment.