packages feed

formatting 6.3.2 → 6.3.4

raw patch · 3 files changed

+21/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Formatting.Internal.Raw: (<>) :: Builder -> Builder -> Builder
+ Formatting.Internal.Raw: Hex :: a -> Hex a
+ Formatting.Internal.Raw: Shown :: a -> Shown a
+ Formatting.Internal.Raw: [shown] :: Shown a -> a
+ Formatting.Internal.Raw: decimal :: (Integral a, Bounded a) => a -> Builder
+ Formatting.Internal.Raw: fixed :: (Real a) => Int -> a -> Builder
+ Formatting.Internal.Raw: hex :: Integral a => a -> Builder
+ Formatting.Internal.Raw: hexadecimal :: Integral a => a -> Builder
+ Formatting.Internal.Raw: i2d :: Int -> Char
+ Formatting.Internal.Raw: infixr 4 <>
+ Formatting.Internal.Raw: integer :: Int -> Integer -> Builder
+ Formatting.Internal.Raw: left :: Buildable a => Int -> Char -> a -> Builder
+ Formatting.Internal.Raw: minus :: Builder
+ Formatting.Internal.Raw: newtype Hex a
+ Formatting.Internal.Raw: newtype Shown a
+ Formatting.Internal.Raw: right :: Buildable a => Int -> Char -> a -> Builder
+ Formatting.Internal.Raw: shortest :: (Real a) => a -> Builder

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+6.3.3++* The `Data.Text.Format` hierarchy was reexported as+  `Formatting.Internal.Raw`.+ 6.3.1  * Proper GHC 7.10 -> GHC 8.4 support
formatting.cabal view
@@ -1,5 +1,5 @@ name:                formatting-version:             6.3.2+version:             6.3.4 synopsis:            Combinator-based type-safe formatting (like printf() or FORMAT) description:         Combinator-based type-safe formatting (like printf() or FORMAT), modelled from the HoleyMonoids package. license:             BSD3@@ -21,6 +21,7 @@     Formatting.Time     Formatting.Clock     Formatting.Internal+    Formatting.Internal.Raw     Formatting.Buildable    other-modules:
+ src/Formatting/Internal/Raw.hs view
@@ -0,0 +1,14 @@+-- | Reexports of things that were previously in the @text-format@ package.++module Formatting.Internal.Raw+  (+  module Data.Text.Format,+  module Data.Text.Format.Functions,+  module Data.Text.Format.Int,+  module Data.Text.Format.Types+ ) where++import Data.Text.Format+import Data.Text.Format.Functions+import Data.Text.Format.Int+import Data.Text.Format.Types