From a02c2dafafa425bd5f36c8629e98b98daf1cfa1e Mon Sep 17 00:00:00 2001
From: Herbert Valerio Riedel <hvr@gnu.org>
Date: Wed, 27 Dec 2017 14:42:29 +0100
Subject: [PATCH] Remove `Stability: experimental` header from non-internal
 modules

After so many years, I think it's fair to say that `Data.Text`'s API
is not "experimental" anymore... ;-)

`.Internal` modules however, are not "stable".
---
 Data/Text.hs                  | 1 -
 Data/Text/Array.hs            | 1 -
 Data/Text/Encoding.hs         | 1 -
 Data/Text/Encoding/Error.hs   | 1 -
 Data/Text/Foreign.hs          | 1 -
 Data/Text/IO.hs               | 1 -
 Data/Text/Lazy.hs             | 1 -
 Data/Text/Lazy/Builder.hs     | 1 -
 Data/Text/Lazy/Builder/Int.hs | 1 -
 Data/Text/Lazy/Encoding.hs    | 1 -
 Data/Text/Lazy/IO.hs          | 1 -
 Data/Text/Lazy/Read.hs        | 1 -
 Data/Text/Read.hs             | 1 -
 Data/Text/Unsafe.hs           | 1 -
 14 files changed, 14 deletions(-)

diff --git a/Data/Text.hs b/Data/Text.hs
index 2075d788..2fee2975 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 57527fbd..849c6338 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 4f5308c5..8758551d 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 6227447d..e0cd4fc6 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 a1cdd45f..0dad97e1 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 f9c97c01..29afbd5b 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 d6421e91..0dd965bf 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 b04341fa..6c4c24ad 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 47b1a9ae..8d6913be 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 ea7db855..ac1464de 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 7d4d84fd..d92396df 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 c35058da..002601b7 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 74a577a7..023f8e4c 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 36899771..f706d83e 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
-- 
GitLab