diff --git a/packages/fresh/deno.json b/packages/fresh/deno.json index 92d15e0ee6f..2ed7bd428c1 100644 --- a/packages/fresh/deno.json +++ b/packages/fresh/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/core", - "version": "2.0.0-alpha.60", + "version": "2.0.0-alpha.61", "license": "MIT", "exports": { ".": "./src/mod.ts", diff --git a/packages/init/deno.json b/packages/init/deno.json index 2191a1d7665..013c6d25fe8 100644 --- a/packages/init/deno.json +++ b/packages/init/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/init", - "version": "2.0.0-alpha.60", + "version": "2.0.0-alpha.61", "license": "MIT", "exports": "./src/mod.ts", "exclude": ["**/tmp/*"], diff --git a/packages/init/src/init.ts b/packages/init/src/init.ts index 5e5e1d6a681..a32834bbb22 100644 --- a/packages/init/src/init.ts +++ b/packages/init/src/init.ts @@ -3,7 +3,7 @@ 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.60"; +const FRESH_VERSION = "2.0.0-alpha.61"; const FRESH_TAILWIND_VERSION = "0.0.1-alpha.9"; const PREACT_VERSION = "10.27.1"; const PREACT_SIGNALS_VERSION = "2.3.1"; diff --git a/packages/update/deno.json b/packages/update/deno.json index 0e1f9227030..d5c1e072630 100644 --- a/packages/update/deno.json +++ b/packages/update/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/update", - "version": "2.0.0-alpha.60", + "version": "2.0.0-alpha.61", "license": "MIT", "exports": "./src/mod.ts", "exclude": ["**/tmp/*"], diff --git a/packages/update/src/update.ts b/packages/update/src/update.ts index 6501da057dd..5c70a9dc99a 100644 --- a/packages/update/src/update.ts +++ b/packages/update/src/update.ts @@ -6,7 +6,7 @@ import { ProgressBar } from "@std/cli/unstable-progress-bar"; export const SyntaxKind = tsmorph.ts.SyntaxKind; -export const FRESH_VERSION = "2.0.0-alpha.60"; +export const FRESH_VERSION = "2.0.0-alpha.61"; export const PREACT_VERSION = "10.27.1"; export const PREACT_SIGNALS_VERSION = "2.3.1";