Skip to content

Commit 6ee4551

Browse files
authored
2.0.0-alpha.25
1 parent 6b685dd commit 6ee4551

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
deno: ["canary", "rc"]
17+
deno: ["v2.x", "canary"]
1818
os: [macOS-latest, windows-latest, ubuntu-latest]
1919
include:
2020
- os: ubuntu-latest
@@ -34,15 +34,15 @@ jobs:
3434
deno-version: ${{ matrix.deno }}
3535

3636
- name: Verify formatting
37-
if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v1.x'
37+
if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2.x'
3838
run: deno fmt --check
3939

4040
- name: Run linter
41-
if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v1.x'
41+
if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2.x'
4242
run: deno lint
4343

4444
- name: Spell-check
45-
if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v1.x'
45+
if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2.x'
4646
uses: crate-ci/typos@master
4747

4848
- name: Type check project

deno.json

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

docs/latest/getting-started/create-a-route.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The new page will be visible at `http://localhost:8000/about`.
5252
pages in the _Getting Started_ guide will also explain more features of routes. -->
5353

5454
[concepts-routing]: /docs/concepts/routing
55-
[jsx]:https://react.dev/learn/writing-markup-with-jsx
55+
[jsx]: https://react.dev/learn/writing-markup-with-jsx
5656
[preact]: https://preactjs.com/
5757

5858
<!-- [concepts-routes]: /docs/concepts/routes -->

examples/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"imports": {
1111
"@preact/signals": "npm:@preact/signals@^1.2.3",
1212
"preact": "npm:preact@^10.24.1",
13-
"fresh": "jsr:@fresh/core@^2.0.0-alpha.18"
13+
"fresh": "jsr:@fresh/core@^2.0.0-alpha.25"
1414
},
1515
"compilerOptions": {
1616
"jsx": "react-jsx",

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.24",
3+
"version": "2.0.0-alpha.25",
44
"license": "MIT",
55
"exports": {
66
".": "./src/mod.ts"

init/src/init.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ 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.24";
5+
const FRESH_VERSION = "2.0.0-alpha.25";
66
const FRESH_TAILWIND_VERSION = "0.0.1-alpha.7";
77
const PREACT_VERSION = "10.24.3";
88
const PREACT_SIGNALS_VERSION = "1.3.0";

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.24",
3+
"version": "2.0.0-alpha.25",
44
"license": "MIT",
55
"exports": {
66
".": "./src/mod.ts"

update/src/update.ts

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

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

7-
export const FRESH_VERSION = "2.0.0-alpha.24";
7+
export const FRESH_VERSION = "2.0.0-alpha.25";
88
export const PREACT_VERSION = "10.24.3";
99
export const PREACT_SIGNALS_VERSION = "1.3.0";
1010

0 commit comments

Comments
 (0)