Skip to content

Commit 7fba935

Browse files
committed
Switch to version number 1.0.1
1 parent 540106b commit 7fba935

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-4
lines changed

NixSupport/haskell-packages/ihp-hsx.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}:
1515
mkDerivation {
1616
pname = "ihp-hsx";
17-
version = "v1.0.0";
17+
version = "v1.0.1";
1818
src = ./../../ihp-hsx;
1919
isLibrary = true;
2020
isExecutable = false;

Paths_ihp.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ module Paths_ihp where
22

33
import Data.Version
44

5-
version = Version { versionBranch = [1, 0, 0], versionTags = [] }
5+
version = Version { versionBranch = [1, 0, 1], versionTags = [] }

UPGRADE.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22
This document describes breaking changes, as well as how to fix them, that have occured at given releases.
33
After updating your project, please consult the segments from your current release until now.
44

5+
6+
# Upgrade to 1.0.1 from 1.0.0
7+
1. **Switch IHP version**
8+
9+
- **IHP Basic**
10+
11+
Open `default.nix` and change the git commit in line 4 to the following:
12+
13+
```diff
14+
-ref = "refs/tags/v1.0.0";
15+
+ref = "refs/tags/v1.0.1";
16+
```
17+
18+
- **IHP Pro & IHP Business**
19+
20+
Visit https://ihp.digitallyinduced.com/Builds and copy the latest v1.0.1 URL into your `default.nix`.
21+
22+
2. **Remake Env**
23+
24+
Run the following commands:
25+
26+
```bash
27+
nix-shell --run 'make -B .envrc'
28+
nix-shell --run 'make -B build/ihp-lib'
29+
```
30+
31+
Now you can start your project as usual with `./start`.
32+
33+
534
# Upgrade to 1.0.0 from Beta 0.20.0
635
1. **Switch IHP version**
736

ihp.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: ihp
3-
version: 1.0.0
3+
version: 1.0.1
44
synopsis: Haskell Web Framework
55
description: The Integrated Haskell Platform is a full stack framework focused on rapid application development while striving for robust code quality.
66
license: NONE

ihp.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
}:
6868
mkDerivation {
6969
pname = "ihp";
70-
version = "v1.0.0";
70+
version = "v1.0.1";
7171
src = (import <nixpkgs> { }).nix-gitignore.gitignoreSource [ ] ./.;
7272
isLibrary = true;
7373
isExecutable = true;

0 commit comments

Comments
 (0)