packages feed

ordinal 0.4.0.4 → 0.4.0.5

raw patch · 2 files changed

+5/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ordinal.cabal view
@@ -1,5 +1,5 @@ name:                ordinal-version:             0.4.0.4+version:             0.4.0.5 synopsis:            Convert numbers to words in different languages. description:     A package based on Python's num2words package that converts numbers
src/Text/Numerals/Class.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE DeriveFunctor, DeriveFoldable, RankNTypes, Safe #-}+{-# LANGUAGE CPP, DeriveFunctor, DeriveFoldable, RankNTypes, Safe #-}  {-| Module      : Text.Numerals.Class@@ -35,6 +35,9 @@   ) where  import Data.Default(Default(def))+#if __GLASGOW_HASKELL__ < 803+import Data.Semigroup((<>))+#endif import Data.Text(Text) import Data.Time.Clock(getCurrentTime, utctDayTime) import Data.Time.LocalTime(TimeOfDay(TimeOfDay), TimeZone, timeToTimeOfDay, utcToLocalTimeOfDay)