air-extra 2013.9.15 → 2015.5.4
raw patch · 5 files changed
+4/−15 lines, 5 filesdep −old-localedep −old-timePVP ok
version bump matches the API change (PVP)
Dependencies removed: old-locale, old-time
API changes (from Hackage documentation)
- Air.Extra: f2t :: Real a => a -> UTCTime
+ Air.Extra: f2t :: (Real a) => a -> UTCTime
- Air.Extra: t2f :: Fractional a => UTCTime -> a
+ Air.Extra: t2f :: (Fractional a) => UTCTime -> a
Files
- air-extra.cabal +3/−5
- changelog.md +0/−5
- known-issues.md +0/−0
- readme.md +0/−2
- src/Air/Extra.hs +1/−3
air-extra.cabal view
@@ -1,17 +1,15 @@ Name: air-extra-Version: 2013.9.15+Version: 2015.5.4 Build-type: Simple Synopsis: air-extra Description: An alternative Haskell Prelude library, extra helpers License: BSD3 Author: Jinjing Wang Maintainer: Jinjing Wang <nfjinjing@gmail.com>-Build-Depends: base Cabal-version: >= 1.2 category: Development license-file: LICENSE homepage: https://github.com/nfjinjing/air-extra-data-files: readme.md, changelog.md, known-issues.md tested-with: GHC==7.6.1 library@@ -21,13 +19,13 @@ , containers , array , parallel- , old-time+ -- , old-time , time , bytestring >= 0.9 , regexpr >= 0.3.4 , parsec >= 2 , directory- , old-locale+ -- , old-locale , filepath , air >= 2013.7.18 , text
− changelog.md
@@ -1,5 +0,0 @@-2011.6.11------------* init-
− known-issues.md
− readme.md
@@ -1,2 +0,0 @@-An alternative Haskell Prelude library, extra helpers.-
src/Air/Extra.hs view
@@ -11,7 +11,7 @@ import Prelude hiding ((.), (^), (>), (<), (/), elem, foldl, (-)) import System.Directory import System.IO-import System.Locale (defaultTimeLocale)+-- import System.Locale (defaultTimeLocale) import Text.RegexPR import qualified Data.List as L@@ -189,5 +189,3 @@ line_buffer = do hSetBuffering stdout LineBuffering hSetBuffering stderr LineBuffering--