diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dae07915b80d432290694354f6162755a204f2f..a7370a6cb893fe67789b8d6e22f0f8f8c37d09fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Revision history for ghcup +## 0.1.3 -- 2020-04-15 + +* Fix lesser bug when skipping ghcup update + ## 0.1.2 -- 2020-04-15 * Fix bug when removing the set GHC version diff --git a/ghcup.cabal b/ghcup.cabal index c2a7ecd938e11df895b9ace303ed96fb86e11589..eb056dded0b38d6e9ecd0619d3333e878f485690 100644 --- a/ghcup.cabal +++ b/ghcup.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ghcup -version: 0.1.2 +version: 0.1.3 synopsis: ghc toolchain installer as an exe/library description: A rewrite of the shell script ghcup, for providing diff --git a/lib/GHCup/Version.hs b/lib/GHCup/Version.hs index 3686ac009d3fb6a31f6e8cd4d5a2d4c8f90858f7..6a5c7a1cbed90591c87656f8debceafed14bcd05 100644 --- a/lib/GHCup/Version.hs +++ b/lib/GHCup/Version.hs @@ -14,4 +14,4 @@ ghcupURL :: URI ghcupURL = [uri|https://www.haskell.org/ghcup/data/ghcup-0.0.1.json|] ghcUpVer :: PVP -ghcUpVer = [pver|0.1.2|] +ghcUpVer = [pver|0.1.3|]