diff --git a/CHANGES b/CHANGES
--- a/CHANGES
+++ b/CHANGES
@@ -118,3 +118,6 @@
 
 0.2.3.1:
 		* fix bugs (-y) in rendering annotations. Issue #7
+
+0.2.3.2:
+		* allow v0.13 of pango/cairo
diff --git a/examples/Test.hs b/examples/Test.hs
--- a/examples/Test.hs
+++ b/examples/Test.hs
@@ -117,12 +117,13 @@
                            glyph (4,0.2) (return ())
                            text (3,0.0) (setText "from the α to the Ω")
                            cairo (\_ _ _ _ -> do
-                                    C.newPath
-                                    C.moveTo 3 0.75
-                                    C.lineTo 4 (-0.5)
+                                    --C.stroke
+                                    --C.newPath
+                                    C.moveTo 1 0.75
+                                    C.lineTo 2 (-0.5)
                                     C.stroke
-                                    C.rectangle (pi/2) (-1) (pi/2) 1
-                                    C.fill
+                                    --C.rectangle (pi/2) (-0.75) (pi/2) 1
+                                    --C.fill
                                  )
 --                         setRange YAxis Lower Log (-1.25) 1.25
 --                         setLegend True NorthEast Inside
diff --git a/lib/Graphics/Rendering/Plot/Render/Plot/Annotation.hs b/lib/Graphics/Rendering/Plot/Render/Plot/Annotation.hs
--- a/lib/Graphics/Rendering/Plot/Render/Plot/Annotation.hs
+++ b/lib/Graphics/Rendering/Plot/Render/Plot/Annotation.hs
@@ -142,11 +142,8 @@
   (BoundingBox x y w h) <- get
   cairo $ do
     C.save
-    --let (x,y) = (x'*xscale,y'*yscale)
-    --let (w,h) = (w'*xscale,h'*yscale)
-    --flipVertical
-    --C.translate x y
-    --C.scale (xscale) (yscale)
+    --C.translate (x) (y)
+    C.scale (xscale) (yscale)
     r x y w h
     C.restore
 
diff --git a/plot.cabal b/plot.cabal
--- a/plot.cabal
+++ b/plot.cabal
@@ -1,5 +1,5 @@
 Name:                plot
-Version:             0.2.3.1
+Version:             0.2.3.2
 License:             BSD3
 License-file:        LICENSE
 Copyright:           (c) A.V.H. McPhail 2010, 2012, 2013, 2014
@@ -35,7 +35,7 @@
      .
 Category:            Graphics
 
-Tested-with:         GHC==7.6.3
+Tested-with:         GHC==7.8.3
 Cabal-version:       >= 1.8
 Build-type:          Simple
 
@@ -51,7 +51,7 @@
   Build-Depends:     base >= 4 && < 5,
                      mtl > 2, array,
                      MaybeT,
-                     pango >= 0.11.2 && < 0.13, cairo >= 0.11.1 && < 0.13,
+                     pango >= 0.11.2 && < 0.14, cairo >= 0.11.1 && < 0.14,
                      colour >= 2.2.1 && < 2.4,
                      hmatrix >= 0.10
 
