Skip to content

Commit f35338b

Browse files
chore: release 2.0.0-alpha.56 (#3195)
1 parent 83036d8 commit f35338b

7 files changed

Lines changed: 94 additions & 30 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
- name: Publish Fresh
2727
run: deno publish
2828

29+
- name: Publish @fresh/build-id
30+
working-directory: ./build-id
31+
run: deno publish
32+
2933
- name: Publish @fresh/init
3034
working-directory: ./init
3135
run: deno publish

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"./www"
1212
],
1313
"name": "@fresh/core",
14-
"version": "2.0.0-alpha.55",
14+
"version": "2.0.0-alpha.56",
1515
"license": "MIT",
1616
"exports": {
1717
".": "./src/mod.ts",

deno.lock

Lines changed: 85 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.0.0-alpha.55",
3+
"version": "2.0.0-alpha.56",
44
"license": "MIT",
55
"exports": "./src/mod.ts",
66
"exclude": ["**/tmp/*"],

init/src/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as colors from "@std/fmt/colors";
33
import * as path from "@std/path";
44

55
// Keep these as is, as we replace these version in our release script
6-
const FRESH_VERSION = "2.0.0-alpha.55";
6+
const FRESH_VERSION = "2.0.0-alpha.56";
77
const FRESH_TAILWIND_VERSION = "0.0.1-alpha.9";
88
const PREACT_VERSION = "10.27.0";
99
const PREACT_SIGNALS_VERSION = "2.2.1";

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.0.0-alpha.55",
3+
"version": "2.0.0-alpha.56",
44
"license": "MIT",
55
"exports": "./src/mod.ts",
66
"exclude": ["**/tmp/*"],

update/src/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ProgressBar } from "@std/cli/unstable-progress-bar";
66

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

9-
export const FRESH_VERSION = "2.0.0-alpha.55";
9+
export const FRESH_VERSION = "2.0.0-alpha.56";
1010
export const PREACT_VERSION = "10.27.0";
1111
export const PREACT_SIGNALS_VERSION = "2.2.1";
1212

0 commit comments

Comments
 (0)