diff --git a/Data/Text.hs b/Data/Text.hs
index 2075d788081fe598c4e106a700ddbab18d015fb6..2fee29750e428a225d01fb8da4ace4917f462c7f 100644
--- a/Data/Text.hs
+++ b/Data/Text.hs
@@ -15,7 +15,6 @@
 --
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : GHC
 --
 -- A time and space-efficient implementation of Unicode text.
diff --git a/Data/Text/Array.hs b/Data/Text/Array.hs
index 57527fbdfff10c0ff1e48028d2bd7d40ef6d0b58..849c6338b06663bed196b43864bbc0e1de47b511 100644
--- a/Data/Text/Array.hs
+++ b/Data/Text/Array.hs
@@ -7,7 +7,6 @@
 --
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : portable
 --
 -- Packed, unboxed, heap-resident arrays.  Suitable for performance
diff --git a/Data/Text/Encoding.hs b/Data/Text/Encoding.hs
index 4f5308c54a701cbe03b3ea33e085a17fd47bab00..8758551d8e91230aac85d386b5cad062dcb32e81 100644
--- a/Data/Text/Encoding.hs
+++ b/Data/Text/Encoding.hs
@@ -11,7 +11,6 @@
 --
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : portable
 --
 -- Functions for converting 'Text' values to and from 'ByteString',
diff --git a/Data/Text/Encoding/Error.hs b/Data/Text/Encoding/Error.hs
index 6227447de0f86b67b069ff6c5c08374bc477e08e..e0cd4fc6a774751b457ab85392f3f0ae4aa552d0 100644
--- a/Data/Text/Encoding/Error.hs
+++ b/Data/Text/Encoding/Error.hs
@@ -10,7 +10,6 @@
 --
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : GHC
 --
 -- Types and functions for dealing with encoding and decoding errors
diff --git a/Data/Text/Foreign.hs b/Data/Text/Foreign.hs
index a1cdd45f42158ef655b007b49f44f0a2c88a5389..0dad97e1cc6ae40f94986b9a60b619ab632978e8 100644
--- a/Data/Text/Foreign.hs
+++ b/Data/Text/Foreign.hs
@@ -5,7 +5,6 @@
 --
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : GHC
 --
 -- Support for using 'Text' data with native code via the Haskell
diff --git a/Data/Text/IO.hs b/Data/Text/IO.hs
index f9c97c0144c1f9fcd6f9d05a24ca9a1f223ac95b..29afbd5bbf57fe780670ab19f8b7e9c46daa1485 100644
--- a/Data/Text/IO.hs
+++ b/Data/Text/IO.hs
@@ -8,7 +8,6 @@
 --               (c) 2009 Simon Marlow
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : GHC
 --
 -- Efficient locale-sensitive support for text I\/O.
diff --git a/Data/Text/Lazy.hs b/Data/Text/Lazy.hs
index d6421e910eb93a7dc3865d677d8274b8184a54ea..0dd965bff605d314be9aee4ea695b5badbf2ef2b 100644
--- a/Data/Text/Lazy.hs
+++ b/Data/Text/Lazy.hs
@@ -13,7 +13,6 @@
 --
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : GHC
 --
 -- A time and space-efficient implementation of Unicode text using
diff --git a/Data/Text/Lazy/Builder.hs b/Data/Text/Lazy/Builder.hs
index b04341fa730fb03b928d709a4d478a53b492ad00..6c4c24adbe4569ba3d1fbe3d75e5eca9f37a1c69 100644
--- a/Data/Text/Lazy/Builder.hs
+++ b/Data/Text/Lazy/Builder.hs
@@ -11,7 +11,6 @@
 -- License     : BSD-style (see LICENSE)
 --
 -- Maintainer  : Johan Tibell <johan.tibell@gmail.com>
--- Stability   : experimental
 -- Portability : portable to Hugs and GHC
 --
 -- Efficient construction of lazy @Text@ values.  The principal
diff --git a/Data/Text/Lazy/Builder/Int.hs b/Data/Text/Lazy/Builder/Int.hs
index 47b1a9ae69208a86dea5457dc7e48376d78dcf0c..8d6913be9f943e47d41f797b1f5ca0501b8e9f45 100644
--- a/Data/Text/Lazy/Builder/Int.hs
+++ b/Data/Text/Lazy/Builder/Int.hs
@@ -9,7 +9,6 @@
 --              (c) 2011 MailRank, Inc.
 -- License:     BSD-style
 -- Maintainer:  Bryan O'Sullivan <bos@serpentine.com>
--- Stability:   experimental
 -- Portability: portable
 --
 -- Efficiently write an integral value to a 'Builder'.
diff --git a/Data/Text/Lazy/Encoding.hs b/Data/Text/Lazy/Encoding.hs
index ea7db8554f145ecc9382c773929282ef7aa75c5d..ac1464de97d2602cb8a25c880f179eb772e93685 100644
--- a/Data/Text/Lazy/Encoding.hs
+++ b/Data/Text/Lazy/Encoding.hs
@@ -8,7 +8,6 @@
 --
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : portable
 --
 -- Functions for converting lazy 'Text' values to and from lazy
diff --git a/Data/Text/Lazy/IO.hs b/Data/Text/Lazy/IO.hs
index 7d4d84fd1e2d899e77a9b7e79a38f13ddc84c217..d92396df175d3e9f34a3b5d21b1729e3ac81c09e 100644
--- a/Data/Text/Lazy/IO.hs
+++ b/Data/Text/Lazy/IO.hs
@@ -8,7 +8,6 @@
 --               (c) 2009 Simon Marlow
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : GHC
 --
 -- Efficient locale-sensitive support for lazy text I\/O.
diff --git a/Data/Text/Lazy/Read.hs b/Data/Text/Lazy/Read.hs
index c35058da22a91da38f93af134ab5a9b523836e43..002601b70e62c68fca807b3a4e936cb6360b2fb5 100644
--- a/Data/Text/Lazy/Read.hs
+++ b/Data/Text/Lazy/Read.hs
@@ -11,7 +11,6 @@
 --
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : GHC
 --
 -- Functions used frequently when reading textual data.
diff --git a/Data/Text/Read.hs b/Data/Text/Read.hs
index 74a577a7d08edf071fb4852baf7e23f9420a9b8a..023f8e4cb22c9b228a5c9a1aa4e2e8fdd87fc598 100644
--- a/Data/Text/Read.hs
+++ b/Data/Text/Read.hs
@@ -9,7 +9,6 @@
 --
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : GHC
 --
 -- Functions used frequently when reading textual data.
diff --git a/Data/Text/Unsafe.hs b/Data/Text/Unsafe.hs
index 368997711292df779b9bdc41c28d73d440d48989..f706d83e30555a32efa23ab773d461d66e63db4f 100644
--- a/Data/Text/Unsafe.hs
+++ b/Data/Text/Unsafe.hs
@@ -4,7 +4,6 @@
 -- Copyright   : (c) 2009, 2010, 2011 Bryan O'Sullivan
 -- License     : BSD-style
 -- Maintainer  : bos@serpentine.com
--- Stability   : experimental
 -- Portability : portable
 --
 -- A module containing unsafe 'Text' operations, for very very careful