Skip to content

Commit

Permalink
Update assumed GHC version to 8.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
berberman committed Feb 27, 2021
1 parent ce12ad5 commit 882e23a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The changelog is available [on GitHub][2].

## 0.7.1.0

* Bump ghc version to 8.10.4

* Fix some output formats

## 0.7.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/Distribution/ArchHs/Core.hs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ archEnv _ (OS Linux) = Right True
archEnv _ (OS _) = Right False
archEnv _ (Arch X86_64) = Right True
archEnv _ (Arch _) = Right False
archEnv _ (Impl GHC range) = Right $ withinRange (mkVersion [8, 10, 3]) range
archEnv _ (Impl GHC range) = Right $ withinRange (mkVersion [8, 10, 4]) range
archEnv _ (Impl _ _) = Right False
archEnv assignment f@(Flag f') = go f $ lookupFlagAssignment f' assignment
where
Expand Down

0 comments on commit 882e23a

Please sign in to comment.