diff --git a/Graphics/Rendering/Pango.chs b/Graphics/Rendering/Pango.chs
--- a/Graphics/Rendering/Pango.chs
+++ b/Graphics/Rendering/Pango.chs
@@ -37,7 +37,7 @@
 -- * Native fonts on MacOS X using ATSUI for complex-text handling.
 --
 -- The integration of Pango
--- with < http://cairographics.org > provides a complete solution with
+-- with Cairo <http://cairographics.org/> provides a complete solution with
 -- high quality text handling and graphics rendering.
 --  
 -- Dynamically loaded modules then handle text layout for particular
diff --git a/Graphics/Rendering/Pango/BasicTypes.chs b/Graphics/Rendering/Pango/BasicTypes.chs
--- a/Graphics/Rendering/Pango/BasicTypes.chs
+++ b/Graphics/Rendering/Pango/BasicTypes.chs
@@ -127,17 +127,19 @@
 {#enum Weight {underscoreToCase} deriving (Eq)#}
 
 instance Show Weight where
-  showsPrec _ WeightThin	= shows "thin"
   showsPrec _ WeightUltralight	= shows "ultralight"
   showsPrec _ WeightLight	= shows "light"
-  showsPrec _ WeightBook	= shows "book"
   showsPrec _ WeightNormal	= shows "normal"
-  showsPrec _ WeightMedium	= shows "medium"
   showsPrec _ WeightSemibold	= shows "semibold"
   showsPrec _ WeightBold	= shows "bold"
   showsPrec _ WeightUltrabold 	= shows "ultrabold"
   showsPrec _ WeightHeavy	= shows "heavy"
+#if PANGO_VERSION_CHECK(1,24,0)
+  showsPrec _ WeightThin	= shows "thin"
+  showsPrec _ WeightBook	= shows "book"
+  showsPrec _ WeightMedium	= shows "medium"
   showsPrec _ WeightUltraheavy	= shows "ultraheavy"
+#endif
 
 -- | The variant of a font.
 --
diff --git a/pango.cabal b/pango.cabal
--- a/pango.cabal
+++ b/pango.cabal
@@ -1,5 +1,5 @@
 Name:           pango
-Version:        0.11.1
+Version:        0.11.2
 License:        LGPL-2.1
 License-file:   COPYING
 Copyright:      (c) 2001-2010 The Gtk2Hs Team
