cmdargs 0.6.9 → 0.6.10
raw patch · 3 files changed
+4/−8 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- System/Console/CmdArgs/Annotate.hs +2/−6
- System/Console/CmdArgs/Implicit/Reform.hs +1/−1
- cmdargs.cabal +1/−1
System/Console/CmdArgs/Annotate.hs view
@@ -189,14 +189,10 @@ (&=) :: (Data val, Data ann) => val -> ann -> val (&=) x y = addAnn (id_ x) (id_ y) --{-# NOINLINE const_ #-}-const_ :: a -> b -> b-const_ f x = x- {-# INLINE id_ #-} id_ :: a -> a-id_ x = const_ (\() -> ()) x+id_ x = case unit of () -> x+ where unit = reverse "" `seq` () ---------------------------------------------------------------------
System/Console/CmdArgs/Implicit/Reform.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE PatternGuards, RecordWildCards #-}+{-# LANGUAGE RecordWildCards #-} module System.Console.CmdArgs.Implicit.Reform(reform) where
cmdargs.cabal view
@@ -1,7 +1,7 @@ cabal-version: >= 1.6 build-type: Simple name: cmdargs-version: 0.6.9+version: 0.6.10 license: BSD3 license-file: LICENSE category: Console