diff --git a/CHANGES b/CHANGES
--- a/CHANGES
+++ b/CHANGES
@@ -1,2 +1,5 @@
+0.1.2: August 23, 2011
+  * Export rows/cols.
+
 0.1.1: August 22, 2009
   * Export Box and Alignment types
diff --git a/Text/PrettyPrint/Boxes.hs b/Text/PrettyPrint/Boxes.hs
--- a/Text/PrettyPrint/Boxes.hs
+++ b/Text/PrettyPrint/Boxes.hs
@@ -55,6 +55,11 @@
     , alignVert
     , align
 
+    -- * Inspecting boxes
+
+    , rows
+    , cols
+
     -- * Rendering boxes
 
     , render
diff --git a/boxes.cabal b/boxes.cabal
--- a/boxes.cabal
+++ b/boxes.cabal
@@ -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
