aboutsummaryrefslogtreecommitdiff
path: root/install.hs
diff options
context:
space:
mode:
authoralexwl <alexey.a.kiryushin@gmail.com>2019-05-08 13:36:33 +0300
committeralexwl <alexey.a.kiryushin@gmail.com>2019-05-08 13:36:33 +0300
commit660e3020f5bbda277278355a861d8e3d6ebeeec8 (patch)
treee5359c9f13db5e3ebe8c4d0fd65ff733db3a95cf /install.hs
parent4ad872ac715e212c2c2c86e4a1a87f9c3a09ee91 (diff)
Add support for GHC 8.6.5
Diffstat (limited to 'install.hs')
-rwxr-xr-xinstall.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.hs b/install.hs
index 16ab109..6db36fa 100755
--- a/install.hs
+++ b/install.hs
@@ -41,7 +41,7 @@ import System.Process.Typed
-- | Keep this in sync with the stack.yamls at the top level of the project.
supportedGhcVersions :: [Version]
supportedGhcVersions =
- map Version ["8.0.2", "8.2.2", "8.4.3", "8.4.4", "8.6.3", "8.6.4"]
+ map Version ["8.0.2", "8.2.2", "8.4.3", "8.4.4", "8.6.3", "8.6.4","8.6.5"]
newtype Version = Version { unVersion :: String } deriving Eq