alex-meta 0.3.0.12 → 0.3.0.13
raw patch · 3 files changed
+10/−5 lines, 3 filesdep ~template-haskellPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: template-haskell
API changes (from Hackage documentation)
- Text.Alex.AlexTemplate: alexTemplate :: () => p -> String
+ Text.Alex.AlexTemplate: alexTemplate :: p -> String
Files
- alex-meta.cabal +2/−2
- changelog.md +5/−0
- src/DFAMin.hs +3/−3
alex-meta.cabal view
@@ -1,5 +1,5 @@ Name: alex-meta-Version: 0.3.0.12+Version: 0.3.0.13 Synopsis: Quasi-quoter for Alex lexers -- Description: License: BSD3@@ -25,7 +25,7 @@ -- Packages needed in order to build this package. Build-depends:- template-haskell >=2.5&&<2.17+ template-haskell >=2.5&&<2.18 , haskell-src-meta >=0.5.1.2&&<1.0 , base >= 4.2 && < 5 , array, containers
changelog.md view
@@ -1,5 +1,10 @@ # CHANGELOG for alex-meta +## v0.3.0.13++- Compatibility with GHC 9+ ## v0.3.0.12 - Bump template-haskell version+
src/DFAMin.hs view
@@ -32,9 +32,9 @@ -- end; minimizeDFA :: Ord a => DFA Int a -> DFA Int a-minimizeDFA dfa@ DFA { dfa_start_states = starts,- dfa_states = statemap- }+minimizeDFA dfa@DFA { dfa_start_states = starts,+ dfa_states = statemap+ } = DFA { dfa_start_states = starts, dfa_states = Map.fromList states } where