packages feed

rope 0.6.1 → 0.6.1.1

raw patch · 5 files changed

+13/−8 lines, 5 filesdep ~mtldep ~utf8-stringsetup-changedPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: mtl, utf8-string

API changes (from Hackage documentation)

Files

Data/Rope.hs view
@@ -26,7 +26,7 @@     , toString           -- :: Rope -> String     ) where -import Prelude hiding (null,head,length,drop,take,splitAt, last)+import Prelude () -- hiding (null,head,length,drop,take,splitAt, last) import Data.Rope.Internal      ( Rope     , empty
Data/Rope/Branded.hs view
@@ -25,7 +25,7 @@ import Data.Rope.Branded.Comonad import Data.Monoid import Data.FingerTree (Measured(..))-import Data.Foldable (Foldable, foldMap)+import Data.Foldable (Foldable) import qualified Data.Foldable import Data.Traversable (Traversable(traverse)) import qualified Data.Rope.Internal as Rope
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
+ Setup.lhs view
@@ -0,0 +1,7 @@+#!/usr/bin/runhaskell+> module Main (main) where++> import Distribution.Simple++> main :: IO ()+> main = defaultMain
rope.cabal view
@@ -1,11 +1,11 @@ name:           rope-version:        0.6.1+version:        0.6.1.1 license:        BSD3 license-file:   LICENSE author:         Edward A. Kmett maintainer:     Edward A. Kmett <ekmett@gmail.com> stability:      experimental-homepage:       http://comonad.com/reader+homepage:       http://github.com/ekmett/rope category:       Language synopsis:       Tools for manipulating fingertrees of bytestrings with optional annotations description:    Tools for manipulating fingertrees of bytestrings with optional annotations@@ -19,8 +19,8 @@     base >= 4 && < 6,      bytestring >= 0.9.1.4 && < 0.10,     fingertree >= 0.0.1 && < 0.1,-    utf8-string >= 0.3.5 && < 0.4,-    mtl >= 1.1 && < 1.2+    utf8-string >= 0.3.6 && < 0.4,+    mtl >= 2.0.1 && < 2.1    exposed-modules:     Data.Rope