Skip to content

Commit

Permalink
2.0.0-alpha.25
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato authored Nov 8, 2024
1 parent 6b685dd commit 6ee4551
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
deno: ["canary", "rc"]
deno: ["v2.x", "canary"]
os: [macOS-latest, windows-latest, ubuntu-latest]
include:
- os: ubuntu-latest
Expand All @@ -34,15 +34,15 @@ jobs:
deno-version: ${{ matrix.deno }}

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

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

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

- name: Type check project
Expand Down
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.24",
"version": "2.0.0-alpha.25",
"license": "MIT",
"exports": {
".": "./src/mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion docs/latest/getting-started/create-a-route.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The new page will be visible at `http://localhost:8000/about`.
pages in the _Getting Started_ guide will also explain more features of routes. -->

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

<!-- [concepts-routes]: /docs/concepts/routes -->
2 changes: 1 addition & 1 deletion examples/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"imports": {
"@preact/signals": "npm:@preact/signals@^1.2.3",
"preact": "npm:preact@^10.24.1",
"fresh": "jsr:@fresh/core@^2.0.0-alpha.18"
"fresh": "jsr:@fresh/core@^2.0.0-alpha.25"
},
"compilerOptions": {
"jsx": "react-jsx",
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.24",
"version": "2.0.0-alpha.25",
"license": "MIT",
"exports": {
".": "./src/mod.ts"
Expand Down
2 changes: 1 addition & 1 deletion init/src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,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.24";
const FRESH_VERSION = "2.0.0-alpha.25";
const FRESH_TAILWIND_VERSION = "0.0.1-alpha.7";
const PREACT_VERSION = "10.24.3";
const PREACT_SIGNALS_VERSION = "1.3.0";
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.24",
"version": "2.0.0-alpha.25",
"license": "MIT",
"exports": {
".": "./src/mod.ts"
Expand Down
2 changes: 1 addition & 1 deletion update/src/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as tsmorph from "ts-morph";

export const SyntaxKind = tsmorph.ts.SyntaxKind;

export const FRESH_VERSION = "2.0.0-alpha.24";
export const FRESH_VERSION = "2.0.0-alpha.25";
export const PREACT_VERSION = "10.24.3";
export const PREACT_SIGNALS_VERSION = "1.3.0";

Expand Down

0 comments on commit 6ee4551

Please sign in to comment.