diff --git a/CHANGES b/CHANGES
new file mode 100644
--- /dev/null
+++ b/CHANGES
@@ -0,0 +1,2 @@
+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
@@ -15,7 +15,9 @@
 module Text.PrettyPrint.Boxes
     ( -- * Constructing boxes
 
-      nullBox
+      Box
+
+    , nullBox
     , emptyBox
     , char
     , text
@@ -37,6 +39,8 @@
     , punctuateH, punctuateV
 
     -- * Alignment
+
+    , Alignment
 
     , left, right
     , top, bottom
diff --git a/boxes.cabal b/boxes.cabal
--- a/boxes.cabal
+++ b/boxes.cabal
@@ -1,11 +1,12 @@
 name:                boxes
-version:             0.1
+version:             0.1.1
 synopsis:            2D text pretty-printing library
 description:         A pretty-printing library for laying out text in
                      two dimensions, using a simple box model.
 category:            Text
 license:             BSD3
 license-file:        LICENSE
+extra-source-files:  CHANGES
 author:              Brent Yorgey
 maintainer:          byorgey@cis.upenn.edu
 homepage:            http://code.haskell.org/~byorgey/code/boxes
