From 0ab7fc56b467ca87a5be653432745d7294d25f7a Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Sun, 12 Nov 2023 21:33:55 -0800 Subject: [PATCH] Added upgrade instructions for v1.2 --- UPGRADE.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/UPGRADE.md b/UPGRADE.md index e3e51a26f..bccde1fd8 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -2,6 +2,32 @@ This document describes breaking changes, as well as how to fix them, that have occured at given releases. After updating your project, please consult the segments from your current release until now. +# Upgrade to 1.2.0 from 1.1.0 +1. **Switch IHP version** + + - **IHP Basic** + + Open `flake.nix` and change the git commit in line 3 to the following: + + ```diff + - ihp.url = "github:digitallyinduced/ihp/v1.1"; + + ihp.url = "github:digitallyinduced/ihp/v1.2"; + ``` + + - **IHP Pro & IHP Business** + + Visit https://ihp.digitallyinduced.com/Builds and copy the latest v1.2.0 URL into your `flake.nix`. + +2. **Remake Env** + + Run the following commands: + + ```bash + direnv reload + ``` + + Now you can start your project as usual with `devenv up`. + # Upgrade to 1.1.0 from 1.0.1