Skip to content

Commit

Permalink
1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato authored Oct 11, 2022
1 parent 9ee03e0 commit cdf0c11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/concepts/updating.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ below.
| Fresh version | Preact | preact-render-to-string | Deno |
| ------------- | ---------------- | ----------------------- | --------- |
| 1.0.0-1.0.2 | >=10.8.1 <11.0.0 | >=5.2.0 <6.0.0 | >= 1.23.0 |
| 1.1.0-1.1.1 | >=10.8.1 <11.0.0 | >=5.2.0 <6.0.0 | >= 1.25.0 |
| 1.1.0-1.1.2 | >=10.8.1 <11.0.0 | >=5.2.0 <6.0.0 | >= 1.25.0 |

## Updating dependencies

Expand Down Expand Up @@ -51,14 +51,14 @@ You will be prompted to confirm the changes that will be made to your project.
To manually update your project's dependencies, you can edit the
`import_map.json` file in the root of your projects directory. Dependency
versions are encoded into the URLs in this file. For example, here is how to
update a project from Fresh 1.0.2 to 1.1.1, and update Preact to the latest
update a project from Fresh 1.0.2 to 1.1.2, and update Preact to the latest
version:

```diff
{
"imports": {
- "$fresh/": "https://deno.land/x/[email protected]/",
+ "$fresh/": "https://deno.land/x/[email protected].1/",
+ "$fresh/": "https://deno.land/x/[email protected].2/",

- "preact": "https://esm.sh/[email protected]",
- "preact/": "https://esm.sh/[email protected]/",
Expand Down
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[
"1.1.2",
"1.1.1",
"1.1.0",
"1.0.2",
Expand Down

0 comments on commit cdf0c11

Please sign in to comment.