Skip to content

Commit

Permalink
Make CHANGELOG more precise, account for all LANGUAGE extensions.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasabel committed Oct 22, 2023
1 parent e1e4b2f commit 369b082
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## Changes in 3.4.0.1

* Address new `x-partial` warning of GHC 9.8.
* Drop support for GHC 7.
* Alex 3.4.0.1 needs GHC 8.0 or higher to build.
The code it generates is the same as 3.4.0.0, so it will likely work for older GHCs.
* Tested with GHC 8.0 - 9.8.1.

_Andreas Abel, 2023-10-22_
Expand Down
3 changes: 3 additions & 0 deletions alex.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,11 @@ executable alex
Haskell2010
default-extensions:
PatternSynonyms
ScopedTypeVariables
TupleSections
other-extensions:
CPP
FlexibleContexts
MagicHash
NondecreasingIndentation
OverloadedLists
Expand Down
5 changes: 1 addition & 4 deletions src/DFAMin.hs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}

{-# LANGUAGE CPP #-}
{-# LANGUAGE PatternGuards #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE CPP #-}

module DFAMin (minimizeDFA) where

Expand Down

0 comments on commit 369b082

Please sign in to comment.