packages feed

boxes 0.1.1 → 0.1.2

raw patch · 3 files changed

+19/−5 lines, 3 filesnew-uploaderPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Text.PrettyPrint.Boxes: cols :: Box -> Int
+ Text.PrettyPrint.Boxes: rows :: Box -> Int

Files

CHANGES view
@@ -1,2 +1,5 @@+0.1.2: August 23, 2011+  * Export rows/cols.+ 0.1.1: August 22, 2009   * Export Box and Alignment types
Text/PrettyPrint/Boxes.hs view
@@ -55,6 +55,11 @@     , alignVert     , align +    -- * Inspecting boxes++    , rows+    , cols+     -- * Rendering boxes      , render
boxes.cabal view
@@ -1,5 +1,5 @@ name:                boxes-version:             0.1.1+version:             0.1.2 synopsis:            2D text pretty-printing library description:         A pretty-printing library for laying out text in                      two dimensions, using a simple box model.@@ -8,8 +8,14 @@ license-file:        LICENSE extra-source-files:  CHANGES author:              Brent Yorgey-maintainer:          byorgey@cis.upenn.edu-homepage:            http://code.haskell.org/~byorgey/code/boxes-build-Depends:       base >= 3 && < 5, split >=0.1 && <0.2+maintainer:          Eelis van der Weegen <boxes@contacts.eelis.net> build-type:          Simple-exposed-modules:     Text.PrettyPrint.Boxes+cabal-version:       >= 1.6++library+  build-depends:     base >= 3 && < 5, split >=0.1 && <0.2+  exposed-modules:   Text.PrettyPrint.Boxes++source-repository head+  type: git+  location: git://github.com/Eelis/boxes.git