Skip to content

Commit

Permalink
chore: release alpha 20 (denoland#2618)
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister authored Aug 13, 2024
1 parent 1f9fb91 commit 85c44d6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fresh/core",
"version": "2.0.0-alpha.19",
"version": "2.0.0-alpha.20",
"exports": {
".": "./src/mod.ts",
"./runtime": "./src/runtime/shared.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.19",
"version": "2.0.0-alpha.20",
"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.19";
const FRESH_VERSION = "2.0.0-alpha.20";
const FRESH_TAILWIND_VERSION = "0.0.1-alpha.7";
const PREACT_VERSION = "10.22.1";
const PREACT_SIGNALS_VERSION = "1.2.3";
const PREACT_VERSION = "10.23.2";
const PREACT_SIGNALS_VERSION = "1.3.0";

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.19",
"version": "2.0.0-alpha.20",
"exports": {
".": "./src/mod.ts"
},
Expand Down
6 changes: 3 additions & 3 deletions update/src/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import * as tsmorph from "ts-morph";

export const SyntaxKind = tsmorph.ts.SyntaxKind;

export const FRESH_VERSION = "2.0.0-alpha.19";
export const PREACT_VERSION = "10.22.1";
export const PREACT_SIGNALS_VERSION = "1.2.3";
export const FRESH_VERSION = "2.0.0-alpha.20";
export const PREACT_VERSION = "10.23.2";
export const PREACT_SIGNALS_VERSION = "1.3.0";

export interface DenoJson {
name?: string;
Expand Down

0 comments on commit 85c44d6

Please sign in to comment.