packages feed

fay-base 0.19.4.1 → 0.19.4.2

raw patch · 5 files changed

+18/−8 lines, 5 filesdep ~fayPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: fay

API changes (from Hackage documentation)

+ Data.Text: instance Ord Text
- Data.Data: class Typeable a => Data a
+ Data.Data: class Typeable * a => Data a
- Data.Data: class Typeable a
+ Data.Data: class Typeable (a :: k)

Files

CHANGELOG.md view
@@ -1,6 +1,14 @@ ## Changelog -#### 0.19.4 (2014-10-21)+#### 0.19.4.2 (2015-01-05)++* Allow `fay 0.22.*`.++#### 0.19.4.1 (2014-10-25)++* Merged fay-base into the main fay repository.++### 0.19.4 (2014-10-21)  * Fix type signature of `Data.Text.pack`. * Add IsString instance for `Text` for using the ffi with `RebindableSyntax` enabled.
fay-base.cabal view
@@ -1,5 +1,5 @@ name:                fay-base-version:             0.19.4.1+version:             0.19.4.2 synopsis:            The base package for Fay. description:         The base package for Fay.                      This package amongst others exports Prelude and FFI which you probably want to use with Fay.@@ -59,4 +59,4 @@     Unsafe.Coerce   build-depends:       base == 4.*-    , fay >= 0.21.1 && < 0.22+    , fay >= 0.21.1 && < 0.23
src/Data/Ratio.hs view
@@ -1,8 +1,8 @@-{-# LANGUAGE NoImplicitPrelude #-}-{-# LANGUAGE PackageImports #-}+{-# OPTIONS -fno-warn-missing-methods #-} {-# LANGUAGE CPP #-} {-# LANGUAGE DeriveDataTypeable #-}-{-# OPTIONS -w #-}+{-# LANGUAGE NoImplicitPrelude #-}+{-# LANGUAGE PackageImports #-}  module Data.Ratio where 
src/Data/Text.hs view
@@ -1,3 +1,4 @@+{-# OPTIONS -fno-warn-missing-methods #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE EmptyDataDecls #-} {-# LANGUAGE NoImplicitPrelude #-}@@ -62,7 +63,7 @@ import Data.Data import FFI import Data.Nullable (fromNullable)-import Prelude (Eq,String,Int,Bool,Char,Maybe,Double,error)+import Prelude (Eq,String,Int,Bool,Char,Maybe,Double,Ord,error) import qualified "base" Data.String as B (IsString (..))  -- | A space efficient, packed, unboxed Unicode text type.@@ -70,6 +71,7 @@ deriving instance Eq Text deriving instance Data Text deriving instance Typeable Text+instance Ord Text instance B.IsString Text where fromString = error "the method fromString can never be called"  -- | O(n) The intercalate function takes a Text and a list of Texts and
src/Prelude.hs view
@@ -2,7 +2,7 @@ {-# LANGUAGE FlexibleInstances    #-} {-# LANGUAGE PackageImports       #-} {-# LANGUAGE TypeSynonymInstances #-}-{-# OPTIONS -w #-}+{-# OPTIONS -fno-warn-missing-methods #-}  module Prelude   (