diff --git a/docs/users_guide/8.4.2-notes.rst b/docs/users_guide/8.4.2-notes.rst
index 7002caae0d2fa6f6b0a27089991ee2d3d90c8e74..e579e83c7c05042f6a4b16c93de9f71f4042582f 100644
--- a/docs/users_guide/8.4.2-notes.rst
+++ b/docs/users_guide/8.4.2-notes.rst
@@ -20,8 +20,8 @@ Full details
 Language
 ~~~~~~~~
 
-- Fix a regression in which derived `Read` instances for record data types
-  with field names ending with `#` (by way of :ghc-flag:`-XMagicHash`) would
+- Fix a regression in which derived ``Read`` instances for record data types
+  with field names ending with ``#`` (by way of :ghc-flag:`-XMagicHash`) would
   no longer parse valid output.
 
 Compiler
@@ -43,8 +43,14 @@ Template Haskell
 ``base`` library
 ~~~~~~~~~~~~~~~~
 
-- Add the `readFieldHash` function to `GHC.Read` which behaves like
-  `readField`, but for a field that ends with a `#` symbol.
+- Add the ``readFieldHash`` function to ``GHC.Read`` which behaves like
+  ``readField``, but for a field that ends with a ``#`` symbol.
+
+``integer-gmp`` library
+~~~~~~~~~~~~~~~~~~~~~~~
+
+- Define ``powModSecInteger``, a "secure" version of ``powModInteger`` using
+  the ``mpz_powm_sec`` function.
 
 Build system
 ~~~~~~~~~~~~
diff --git a/libraries/base/base.cabal b/libraries/base/base.cabal
index 416d1add869ce2c98ff772ab94f2fab79625cfb7..47bb36bb198a8383c27aa9946db14239c0a2b9c6 100644
--- a/libraries/base/base.cabal
+++ b/libraries/base/base.cabal
@@ -1,6 +1,6 @@
 cabal-version:  2.1
 name:           base
-version:        4.11.0.0
+version:        4.11.1.0
 -- NOTE: Don't forget to update ./changelog.md
 
 license:        BSD-3-Clause
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md
index cc3a8057ea9bf386263fb6d00a644f77fe9ad5e1..39771170c7812beeadfdea5844fba5a57b5d33bb 100644
--- a/libraries/base/changelog.md
+++ b/libraries/base/changelog.md
@@ -2,6 +2,8 @@
 
 
 ## 4.11.1.0 *TBA*
+  * Bundled with GHC 8.4.2
+
   * Add the `readFieldHash` function to `GHC.Read` which behaves like
     `readField`, but for a field that ends with a `#` symbol (#14918).
 
diff --git a/libraries/integer-gmp/changelog.md b/libraries/integer-gmp/changelog.md
index b817881191d8368dabec91ea4ae825997340b593..51c84bc0475ffbc549cfd81a811f84f78d6b5c28 100644
--- a/libraries/integer-gmp/changelog.md
+++ b/libraries/integer-gmp/changelog.md
@@ -1,5 +1,12 @@
 # Changelog for [`integer-gmp` package](http://hackage.haskell.org/package/integer-gmp)
 
+## 1.0.2.0 *TBA*
+
+  * Bundled with GHC 8.4.2
+
+  * Define `powModSecInteger`, a "secure" version of `powModInteger` using the
+    `mpz_powm_sec` function.
+
 ## 1.0.1.0 *July 2017*
 
   * Bundled with GHC 8.2.1
diff --git a/libraries/integer-gmp/integer-gmp.cabal b/libraries/integer-gmp/integer-gmp.cabal
index 2f32b346274d306329a22db2aa61a0bc54992bb1..c60de3815c7a8d23d257c4c337b9b42e05402c1f 100644
--- a/libraries/integer-gmp/integer-gmp.cabal
+++ b/libraries/integer-gmp/integer-gmp.cabal
@@ -1,5 +1,5 @@
 name:                integer-gmp
-version:             1.0.1.0
+version:             1.0.2.0
 synopsis:            Integer library based on GMP
 license:             BSD3
 license-file:        LICENSE
diff --git a/libraries/integer-gmp/src/GHC/Integer/Type.hs b/libraries/integer-gmp/src/GHC/Integer/Type.hs
index 5dcbdce2b86ee4587d956c1381b3dd304e9e6fca..9ea7c0641c4e54e76a0e0ab3136583bb14541a1a 100644
--- a/libraries/integer-gmp/src/GHC/Integer/Type.hs
+++ b/libraries/integer-gmp/src/GHC/Integer/Type.hs
@@ -1451,7 +1451,7 @@ powModInteger b e m = case m of
 -- supports it (GMP >= 5). Otherwise, it internally falls back to
 -- @'powModInteger'@, and a warning will be emitted when used.
 --
--- @since TODO
+-- @since 1.0.2.0
 {-# NOINLINE powModSecInteger #-}
 powModSecInteger :: Integer -> Integer -> Integer -> Integer
 powModSecInteger b e m = bigNatToInteger (powModSecSBigNat b' e' m')
diff --git a/testsuite/tests/ado/ado004.stderr b/testsuite/tests/ado/ado004.stderr
index c4c7c0b4fde336b3acd820056ecf23f2aef5efc1..4251f983f27b03e34daff2e333a8c64d41725ec7 100644
--- a/testsuite/tests/ado/ado004.stderr
+++ b/testsuite/tests/ado/ado004.stderr
@@ -44,5 +44,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/backpack/should_compile/bkp16.stderr b/testsuite/tests/backpack/should_compile/bkp16.stderr
index 840d21f5f1ed5b3c52c89f7d615641912c656963..05731ecdc75639aea5cbaf636c5ce63331dfd33f 100644
--- a/testsuite/tests/backpack/should_compile/bkp16.stderr
+++ b/testsuite/tests/backpack/should_compile/bkp16.stderr
@@ -2,7 +2,7 @@
   [1 of 1] Compiling Int[sig]         ( p/Int.hsig, nothing )
 [2 of 2] Processing q
   Instantiating q
-  [1 of 1] Including p[Int=base-4.11.0.0:GHC.Exts]
-    Instantiating p[Int=base-4.11.0.0:GHC.Exts]
+  [1 of 1] Including p[Int=base-4.11.1.0:GHC.Exts]
+    Instantiating p[Int=base-4.11.1.0:GHC.Exts]
     [1 of 1] Including ghc-prim-0.5.2.0
     [1 of 1] Compiling Int[sig]         ( p/Int.hsig, bkp16.out/p/p-97PZnzqiJmd2hTwUNGdjod/Int.o )
diff --git a/testsuite/tests/backpack/should_fail/bkpfail16.stderr b/testsuite/tests/backpack/should_fail/bkpfail16.stderr
index 8cfc511e166e1fd49626f2f9cff0e2fe12c1e452..e24158d4023aeaaeeaaf4738130fbdc5b32ac807 100644
--- a/testsuite/tests/backpack/should_fail/bkpfail16.stderr
+++ b/testsuite/tests/backpack/should_fail/bkpfail16.stderr
@@ -2,8 +2,8 @@
   [1 of 1] Compiling ShouldFail[sig]  ( p/ShouldFail.hsig, nothing )
 [2 of 2] Processing q
   Instantiating q
-  [1 of 1] Including p[ShouldFail=base-4.11.0.0:Data.Bool]
-    Instantiating p[ShouldFail=base-4.11.0.0:Data.Bool]
+  [1 of 1] Including p[ShouldFail=base-4.11.1.0:Data.Bool]
+    Instantiating p[ShouldFail=base-4.11.1.0:Data.Bool]
     [1 of 1] Compiling ShouldFail[sig]  ( p/ShouldFail.hsig, bkpfail16.out/p/p-1OqLaT7dAn947wScQQKCw5/ShouldFail.o )
 
 bkpfail16.out/p/p-1OqLaT7dAn947wScQQKCw5/../ShouldFail.hi:1:1: error:
diff --git a/testsuite/tests/backpack/should_fail/bkpfail17.stderr b/testsuite/tests/backpack/should_fail/bkpfail17.stderr
index a417b7e2a9fa9a99b88f1bf2969428cc7e8b5385..ecf2e30696ad5bf2ff0e3485a6f69a40e6400d1e 100644
--- a/testsuite/tests/backpack/should_fail/bkpfail17.stderr
+++ b/testsuite/tests/backpack/should_fail/bkpfail17.stderr
@@ -2,8 +2,8 @@
   [1 of 1] Compiling ShouldFail[sig]  ( p/ShouldFail.hsig, nothing )
 [2 of 2] Processing q
   Instantiating q
-  [1 of 1] Including p[ShouldFail=base-4.11.0.0:Prelude]
-    Instantiating p[ShouldFail=base-4.11.0.0:Prelude]
+  [1 of 1] Including p[ShouldFail=base-4.11.1.0:Prelude]
+    Instantiating p[ShouldFail=base-4.11.1.0:Prelude]
     [1 of 1] Compiling ShouldFail[sig]  ( p/ShouldFail.hsig, bkpfail17.out/p/p-2W6J7O3LvroH97zGxbPEGF/ShouldFail.o )
 
 <no location info>: error:
diff --git a/testsuite/tests/backpack/should_fail/bkpfail19.stderr b/testsuite/tests/backpack/should_fail/bkpfail19.stderr
index 3aa8233925a45f263038caf146de71cd4bda7ee1..5520e557c4766b4e972aedf872541f314e7cf4ad 100644
--- a/testsuite/tests/backpack/should_fail/bkpfail19.stderr
+++ b/testsuite/tests/backpack/should_fail/bkpfail19.stderr
@@ -2,8 +2,8 @@
   [1 of 1] Compiling ShouldFail[sig]  ( p/ShouldFail.hsig, nothing )
 [2 of 2] Processing q
   Instantiating q
-  [1 of 1] Including p[ShouldFail=base-4.11.0.0:Data.STRef]
-    Instantiating p[ShouldFail=base-4.11.0.0:Data.STRef]
+  [1 of 1] Including p[ShouldFail=base-4.11.1.0:Data.STRef]
+    Instantiating p[ShouldFail=base-4.11.1.0:Data.STRef]
     [1 of 1] Compiling ShouldFail[sig]  ( p/ShouldFail.hsig, bkpfail19.out/p/p-CfyUIAu1JTRCDuXEyGszXN/ShouldFail.o )
 
 <no location info>: error:
diff --git a/testsuite/tests/determinism/determ021/determ021.stdout b/testsuite/tests/determinism/determ021/determ021.stdout
index 3e8d27b8965264c419d159a8b65ef91c80a945ba..ded4ec5b0c32597a200cf1402317a3b55e70e98a 100644
--- a/testsuite/tests/determinism/determ021/determ021.stdout
+++ b/testsuite/tests/determinism/determ021/determ021.stdout
@@ -7,8 +7,8 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 [1 of 1] Compiling A                ( A.hs, A.o )
 TYPE SIGNATURES
   test2 ::
@@ -18,5 +18,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/driver/json2.stderr b/testsuite/tests/driver/json2.stderr
index f6c342e8a1b136e908c8767ce08452dd02c4430b..4ed7ae73d31e9ba1f08a5c0c11d33f94d24ef468 100644
--- a/testsuite/tests/driver/json2.stderr
+++ b/testsuite/tests/driver/json2.stderr
@@ -3,7 +3,7 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 [
- {"span": null,"doc": "TYPE SIGNATURES\n  foo :: forall a. a -> a\nTYPE CONSTRUCTORS\nCOERCION AXIOMS\nDependent modules: []\nDependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,\n                     integer-gmp-1.0.1.0]","severity": "SevOutput","reason": null}]
+ {"span": null,"doc": "TYPE SIGNATURES\n  foo :: forall a. a -> a\nTYPE CONSTRUCTORS\nCOERCION AXIOMS\nDependent modules: []\nDependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,\n                     integer-gmp-1.0.2.0]","severity": "SevOutput","reason": null}]
diff --git a/testsuite/tests/ghci/scripts/ghci008.stdout b/testsuite/tests/ghci/scripts/ghci008.stdout
index dc97101cc5a994b6ae4443576d80ca91bd0d09e6..0cf0306c0cffa08c3352427e8ede583d977958e7 100644
--- a/testsuite/tests/ghci/scripts/ghci008.stdout
+++ b/testsuite/tests/ghci/scripts/ghci008.stdout
@@ -35,5 +35,5 @@ class (RealFrac a, Floating a) => RealFloat a where
   	-- Defined in ‘GHC.Float’
 instance RealFloat Float -- Defined in ‘GHC.Float’
 instance RealFloat Double -- Defined in ‘GHC.Float’
-base-4.11.0.0:Data.OldList.isPrefixOf :: Eq a => [a] -> [a] -> Bool
-  	-- Defined in ‘base-4.11.0.0:Data.OldList’
+base-4.11.1.0:Data.OldList.isPrefixOf :: Eq a => [a] -> [a] -> Bool
+  	-- Defined in ‘base-4.11.1.0:Data.OldList’
diff --git a/testsuite/tests/indexed-types/should_compile/T3017.stderr b/testsuite/tests/indexed-types/should_compile/T3017.stderr
index 4a0ac286a6dcb256b5ffd02d1f48ef2dbf31be34..62b32664e8185e20f6e5f783af92eae60da4d860 100644
--- a/testsuite/tests/indexed-types/should_compile/T3017.stderr
+++ b/testsuite/tests/indexed-types/should_compile/T3017.stderr
@@ -20,5 +20,5 @@ INSTANCES
 FAMILY INSTANCES
   type Elem (ListColl a)
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ADT.stderr b/testsuite/tests/partial-sigs/should_compile/ADT.stderr
index 0604f672a80e02fe1dd5c1dd8b3a38d0e64e09ca..d2399a9addb71407a70282b1eadf54917cbc7ed7 100644
--- a/testsuite/tests/partial-sigs/should_compile/ADT.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ADT.stderr
@@ -5,5 +5,5 @@ TYPE CONSTRUCTORS
   data Foo x y z = Foo x y z
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/AddAndOr1.stderr b/testsuite/tests/partial-sigs/should_compile/AddAndOr1.stderr
index baa760c26172820f542807256a33817c0ed2d0f7..510e24fdf3fd93a9ab38a0eaaefb50cb46851ef4 100644
--- a/testsuite/tests/partial-sigs/should_compile/AddAndOr1.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/AddAndOr1.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/AddAndOr2.stderr b/testsuite/tests/partial-sigs/should_compile/AddAndOr2.stderr
index 68fc1e10bc5e9c63d5d3c2b9d11394344c10fb7b..4ce53f90b4f958940cb9ab39e4b6e009f23bee24 100644
--- a/testsuite/tests/partial-sigs/should_compile/AddAndOr2.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/AddAndOr2.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/AddAndOr3.stderr b/testsuite/tests/partial-sigs/should_compile/AddAndOr3.stderr
index e8e2bf736ecf903af46c9b170742d5646a93181b..bef61fd6bfc6d777f7b61a39ec0a7f3ca17c7481 100644
--- a/testsuite/tests/partial-sigs/should_compile/AddAndOr3.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/AddAndOr3.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/AddAndOr4.stderr b/testsuite/tests/partial-sigs/should_compile/AddAndOr4.stderr
index 6e61f43ae8486754fd4b7221449829597601f41b..ab9b5dd7721d6364b64116d630fc4633aa20079d 100644
--- a/testsuite/tests/partial-sigs/should_compile/AddAndOr4.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/AddAndOr4.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/AddAndOr5.stderr b/testsuite/tests/partial-sigs/should_compile/AddAndOr5.stderr
index 6a825e45dc3f8be029945372b317376c6e3e7ffc..f8139c0b5c98f01e7f9b41d133aa9e1c8b5f47f2 100644
--- a/testsuite/tests/partial-sigs/should_compile/AddAndOr5.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/AddAndOr5.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/AddAndOr6.stderr b/testsuite/tests/partial-sigs/should_compile/AddAndOr6.stderr
index 34f1e7f07a15cc896734be9836b4c652512e6b83..90a11e3e988b536df181ee375591e92a5f15d178 100644
--- a/testsuite/tests/partial-sigs/should_compile/AddAndOr6.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/AddAndOr6.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/BoolToBool.stderr b/testsuite/tests/partial-sigs/should_compile/BoolToBool.stderr
index 130ae5b6050728351e05410d2f40ec9ebeade546..0ab5e9ce397cd7637e8b3130e00e41cbef746058 100644
--- a/testsuite/tests/partial-sigs/should_compile/BoolToBool.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/BoolToBool.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/DataFamilyInstanceLHS.stderr b/testsuite/tests/partial-sigs/should_compile/DataFamilyInstanceLHS.stderr
index 7777e4626f50b0f9e797d16460f26a2ddc211956..a7a6342037d80b9d4393828a9327061b926a1657 100644
--- a/testsuite/tests/partial-sigs/should_compile/DataFamilyInstanceLHS.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/DataFamilyInstanceLHS.stderr
@@ -20,5 +20,5 @@ COERCION AXIOMS
 FAMILY INSTANCES
   data instance Sing
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/Defaulting1MROn.stderr b/testsuite/tests/partial-sigs/should_compile/Defaulting1MROn.stderr
index dac63c480084c485040105a16c4ec4020bbd5cfd..800d744f83e42a924eb1ee83bf0bb3d3e895040f 100644
--- a/testsuite/tests/partial-sigs/should_compile/Defaulting1MROn.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/Defaulting1MROn.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/Defaulting2MROff.stderr b/testsuite/tests/partial-sigs/should_compile/Defaulting2MROff.stderr
index df1b5b8277c0fbc17d016358b62d0975fae5f4e3..33726c2e9e1c6ff4648c0b8a8abe09cf74a1be3b 100644
--- a/testsuite/tests/partial-sigs/should_compile/Defaulting2MROff.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/Defaulting2MROff.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/Defaulting2MROn.stderr b/testsuite/tests/partial-sigs/should_compile/Defaulting2MROn.stderr
index df1b5b8277c0fbc17d016358b62d0975fae5f4e3..33726c2e9e1c6ff4648c0b8a8abe09cf74a1be3b 100644
--- a/testsuite/tests/partial-sigs/should_compile/Defaulting2MROn.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/Defaulting2MROn.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/Either.stderr b/testsuite/tests/partial-sigs/should_compile/Either.stderr
index 83ac659d950cdc43cdca11b821fa7bf3b73ff9b8..5b3f4ce0b46b67d1d7438f913af3da35a0041250 100644
--- a/testsuite/tests/partial-sigs/should_compile/Either.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/Either.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/EqualityConstraint.stderr b/testsuite/tests/partial-sigs/should_compile/EqualityConstraint.stderr
index cd10137027b1a20c8052e7ed2c594b6e1cb05c57..043d0d4dd5df143a55cfe27c62cc6020f32a245d 100644
--- a/testsuite/tests/partial-sigs/should_compile/EqualityConstraint.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/EqualityConstraint.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/Every.stderr b/testsuite/tests/partial-sigs/should_compile/Every.stderr
index abdb5d1ad1a8a5da9c7894e03091fc36c092248a..abadad052596ca0ce32fd0761ce2b8b54c607851 100644
--- a/testsuite/tests/partial-sigs/should_compile/Every.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/Every.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/EveryNamed.stderr b/testsuite/tests/partial-sigs/should_compile/EveryNamed.stderr
index 8c65e625adba34249c3189984fdb09250a2a73ad..f4a87187ec35cb77dbe4ed1cfc33e80439a71983 100644
--- a/testsuite/tests/partial-sigs/should_compile/EveryNamed.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/EveryNamed.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ExpressionSig.stderr b/testsuite/tests/partial-sigs/should_compile/ExpressionSig.stderr
index 130ae5b6050728351e05410d2f40ec9ebeade546..0ab5e9ce397cd7637e8b3130e00e41cbef746058 100644
--- a/testsuite/tests/partial-sigs/should_compile/ExpressionSig.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ExpressionSig.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ExpressionSigNamed.stderr b/testsuite/tests/partial-sigs/should_compile/ExpressionSigNamed.stderr
index 130ae5b6050728351e05410d2f40ec9ebeade546..0ab5e9ce397cd7637e8b3130e00e41cbef746058 100644
--- a/testsuite/tests/partial-sigs/should_compile/ExpressionSigNamed.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ExpressionSigNamed.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ExtraConstraints1.stderr b/testsuite/tests/partial-sigs/should_compile/ExtraConstraints1.stderr
index 3d72b56d10d0f99e662460d59900b5a134482ba9..611d169bbe228fb95e43b8c2c774305993da706a 100644
--- a/testsuite/tests/partial-sigs/should_compile/ExtraConstraints1.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ExtraConstraints1.stderr
@@ -7,5 +7,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ExtraConstraints2.stderr b/testsuite/tests/partial-sigs/should_compile/ExtraConstraints2.stderr
index ae94dcc6f98bbd93cee56920ae7bc222f4e90f5e..86c5f4609f28597960442b2157f1e3c2d9b68a32 100644
--- a/testsuite/tests/partial-sigs/should_compile/ExtraConstraints2.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ExtraConstraints2.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ExtraConstraints3.stderr b/testsuite/tests/partial-sigs/should_compile/ExtraConstraints3.stderr
index 2de5614945812fcf2f93e975e022e21fcc5196a1..2d5fe5cad33995a56911b9f7f09ea0c9bd96a50c 100644
--- a/testsuite/tests/partial-sigs/should_compile/ExtraConstraints3.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ExtraConstraints3.stderr
@@ -230,5 +230,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ExtraNumAMROff.stderr b/testsuite/tests/partial-sigs/should_compile/ExtraNumAMROff.stderr
index 7de16b90275f0387c3a81c7945f573bb7c5907be..1c011009406b399c00b97d62e34aa1567b9ca7b1 100644
--- a/testsuite/tests/partial-sigs/should_compile/ExtraNumAMROff.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ExtraNumAMROff.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ExtraNumAMROn.stderr b/testsuite/tests/partial-sigs/should_compile/ExtraNumAMROn.stderr
index 7de16b90275f0387c3a81c7945f573bb7c5907be..1c011009406b399c00b97d62e34aa1567b9ca7b1 100644
--- a/testsuite/tests/partial-sigs/should_compile/ExtraNumAMROn.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ExtraNumAMROn.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/Forall1.stderr b/testsuite/tests/partial-sigs/should_compile/Forall1.stderr
index 8f4bce17a2a0775f32aabc16d131b98926034628..026fdc5ad459aeb2d53da76f8bdc08b31b7fc6e8 100644
--- a/testsuite/tests/partial-sigs/should_compile/Forall1.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/Forall1.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/GenNamed.stderr b/testsuite/tests/partial-sigs/should_compile/GenNamed.stderr
index 130ae5b6050728351e05410d2f40ec9ebeade546..0ab5e9ce397cd7637e8b3130e00e41cbef746058 100644
--- a/testsuite/tests/partial-sigs/should_compile/GenNamed.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/GenNamed.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/HigherRank1.stderr b/testsuite/tests/partial-sigs/should_compile/HigherRank1.stderr
index 4d2df7fda311fd5532f7e15e95df2989ec662955..0561b3a7586b9cb63554792548d930b3ea704bfb 100644
--- a/testsuite/tests/partial-sigs/should_compile/HigherRank1.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/HigherRank1.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/HigherRank2.stderr b/testsuite/tests/partial-sigs/should_compile/HigherRank2.stderr
index 4d2df7fda311fd5532f7e15e95df2989ec662955..0561b3a7586b9cb63554792548d930b3ea704bfb 100644
--- a/testsuite/tests/partial-sigs/should_compile/HigherRank2.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/HigherRank2.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/LocalDefinitionBug.stderr b/testsuite/tests/partial-sigs/should_compile/LocalDefinitionBug.stderr
index 1f549d7f9aa63e06b8a18522ad989f9a202c6898..526c7151447f5c8155f7fa025be7ac5ba417af23 100644
--- a/testsuite/tests/partial-sigs/should_compile/LocalDefinitionBug.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/LocalDefinitionBug.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/Meltdown.stderr b/testsuite/tests/partial-sigs/should_compile/Meltdown.stderr
index 12d34ce56c5ce7975bb2613fd0a6578f5329de31..bf1548e5f16c1dbb6cffa6e0ae91c56136ce3ab8 100644
--- a/testsuite/tests/partial-sigs/should_compile/Meltdown.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/Meltdown.stderr
@@ -13,5 +13,5 @@ INSTANCES
     -- Defined at Meltdown.hs:11:10
   instance Monad (NukeMonad a b) -- Defined at Meltdown.hs:15:10
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/MonoLocalBinds.stderr b/testsuite/tests/partial-sigs/should_compile/MonoLocalBinds.stderr
index 1f549d7f9aa63e06b8a18522ad989f9a202c6898..526c7151447f5c8155f7fa025be7ac5ba417af23 100644
--- a/testsuite/tests/partial-sigs/should_compile/MonoLocalBinds.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/MonoLocalBinds.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/NamedTyVar.stderr b/testsuite/tests/partial-sigs/should_compile/NamedTyVar.stderr
index 48b9762c73d549f64346f927f27b895071a24e46..06de3e3b972f87190b2d29dd522a3638d3d7f723 100644
--- a/testsuite/tests/partial-sigs/should_compile/NamedTyVar.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/NamedTyVar.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/NamedWildcardInDataFamilyInstanceLHS.stderr b/testsuite/tests/partial-sigs/should_compile/NamedWildcardInDataFamilyInstanceLHS.stderr
index 2a17aba1e96350518f792b7e0382d841654c4a37..906296233620f39d6a037b341127b469a97c9f80 100644
--- a/testsuite/tests/partial-sigs/should_compile/NamedWildcardInDataFamilyInstanceLHS.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/NamedWildcardInDataFamilyInstanceLHS.stderr
@@ -19,5 +19,5 @@ COERCION AXIOMS
 FAMILY INSTANCES
   data instance Sing
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/NamedWildcardInTypeFamilyInstanceLHS.stderr b/testsuite/tests/partial-sigs/should_compile/NamedWildcardInTypeFamilyInstanceLHS.stderr
index 28723de839c8a1ec176626d7fd0dabc9f096988b..e30bf7e89ea1a2a365de57125cd1213c35d44c5e 100644
--- a/testsuite/tests/partial-sigs/should_compile/NamedWildcardInTypeFamilyInstanceLHS.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/NamedWildcardInTypeFamilyInstanceLHS.stderr
@@ -9,5 +9,5 @@ COERCION AXIOMS
     F _t = Int
       -- Defined at NamedWildcardInTypeFamilyInstanceLHS.hs:5:3
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ParensAroundContext.stderr b/testsuite/tests/partial-sigs/should_compile/ParensAroundContext.stderr
index 9431aa699c566d20ce525d01deaf6b639162f077..14fa88e24ada0ad9b60d4dca78587dfbd3d58337 100644
--- a/testsuite/tests/partial-sigs/should_compile/ParensAroundContext.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ParensAroundContext.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/PatBind.stderr b/testsuite/tests/partial-sigs/should_compile/PatBind.stderr
index 6e58ce484901287d59669ff1e66d31b6fec4d462..f8514750f2fc54cce4c08f81ade6b3b5e48d8127 100644
--- a/testsuite/tests/partial-sigs/should_compile/PatBind.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/PatBind.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/PatBind2.stderr b/testsuite/tests/partial-sigs/should_compile/PatBind2.stderr
index e0bb4fcfe495b7d6e661f3b91052711008aa3b6f..e227d7d7cc1610988d762de4356b0e6bdc35cfff 100644
--- a/testsuite/tests/partial-sigs/should_compile/PatBind2.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/PatBind2.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/PatternSig.stderr b/testsuite/tests/partial-sigs/should_compile/PatternSig.stderr
index 130ae5b6050728351e05410d2f40ec9ebeade546..0ab5e9ce397cd7637e8b3130e00e41cbef746058 100644
--- a/testsuite/tests/partial-sigs/should_compile/PatternSig.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/PatternSig.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/Recursive.stderr b/testsuite/tests/partial-sigs/should_compile/Recursive.stderr
index 45c936fb13c575395f51b0019efe0c98694d2173..6c39c21e4196378d5ba031e597e5c7c0fd0eadf6 100644
--- a/testsuite/tests/partial-sigs/should_compile/Recursive.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/Recursive.stderr
@@ -5,5 +5,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ScopedNamedWildcards.stderr b/testsuite/tests/partial-sigs/should_compile/ScopedNamedWildcards.stderr
index 4615a2b751fee539277412bbec334657d53bda07..b4c527007102c80ce530a3a437e4c74e01df7d0a 100644
--- a/testsuite/tests/partial-sigs/should_compile/ScopedNamedWildcards.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ScopedNamedWildcards.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ScopedNamedWildcardsGood.stderr b/testsuite/tests/partial-sigs/should_compile/ScopedNamedWildcardsGood.stderr
index df0d2f14b1d4cb90905f6e86cec393a54a0b4f11..d2e89d5a45a06f4e58f89e76376c6c2412af2b7e 100644
--- a/testsuite/tests/partial-sigs/should_compile/ScopedNamedWildcardsGood.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ScopedNamedWildcardsGood.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/ShowNamed.stderr b/testsuite/tests/partial-sigs/should_compile/ShowNamed.stderr
index 0b23a6d50be494ef0b285c119a637d544319b252..2c6c54eeb273b25538345c3803d07fb168924862 100644
--- a/testsuite/tests/partial-sigs/should_compile/ShowNamed.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/ShowNamed.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/SimpleGen.stderr b/testsuite/tests/partial-sigs/should_compile/SimpleGen.stderr
index c9562da278a87e3ff6fc7ff7cde36a8c160045ba..00c2c0b6db55523253219d4479189a3eb4212999 100644
--- a/testsuite/tests/partial-sigs/should_compile/SimpleGen.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/SimpleGen.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/SkipMany.stderr b/testsuite/tests/partial-sigs/should_compile/SkipMany.stderr
index dae1adccb8214fc03b9ec1eb678910544c4bafce..3373618dbb9cc1fd5ab383d87851b718b38479fa 100644
--- a/testsuite/tests/partial-sigs/should_compile/SkipMany.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/SkipMany.stderr
@@ -9,5 +9,5 @@ TYPE CONSTRUCTORS
   data GenParser tok st a = GenParser tok st a
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/SomethingShowable.stderr b/testsuite/tests/partial-sigs/should_compile/SomethingShowable.stderr
index 02f5ad72430536eac3bed370fdb23f89b0d6e52d..b7e0e4a953636a64717e3dc96088e700bfa9af38 100644
--- a/testsuite/tests/partial-sigs/should_compile/SomethingShowable.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/SomethingShowable.stderr
@@ -3,8 +3,8 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 
 SomethingShowable.hs:5:1: warning: [-Wsimplifiable-class-constraints (in -Wdefault)]
     • The constraint ‘Show Bool’ matches an instance declaration
diff --git a/testsuite/tests/partial-sigs/should_compile/TypeFamilyInstanceLHS.stderr b/testsuite/tests/partial-sigs/should_compile/TypeFamilyInstanceLHS.stderr
index cbd4ada394bfc212e227bc387a5b171ae4253591..6b248d7d4798c363154355b324f0d95e2f254c7f 100644
--- a/testsuite/tests/partial-sigs/should_compile/TypeFamilyInstanceLHS.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/TypeFamilyInstanceLHS.stderr
@@ -11,5 +11,5 @@ FAMILY INSTANCES
   type instance F Int _
   type instance F Bool _
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/Uncurry.stderr b/testsuite/tests/partial-sigs/should_compile/Uncurry.stderr
index 0f9828235d3d6d0ad90ac8f04cd1a6e5c79daf75..fed9e808c7d4672018ab15dabb35f468fce14f5a 100644
--- a/testsuite/tests/partial-sigs/should_compile/Uncurry.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/Uncurry.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/UncurryNamed.stderr b/testsuite/tests/partial-sigs/should_compile/UncurryNamed.stderr
index f5ac3a8aedaaa187e489fb6754ae97577e5194b7..edd18a41cea66fbed6b6d736492b8c2028355711 100644
--- a/testsuite/tests/partial-sigs/should_compile/UncurryNamed.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/UncurryNamed.stderr
@@ -3,5 +3,5 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/partial-sigs/should_compile/WarningWildcardInstantiations.stderr b/testsuite/tests/partial-sigs/should_compile/WarningWildcardInstantiations.stderr
index e7ce94abbea158d65d19d45bf4936cbdd474f7a7..47de15ab4582b48895839abb30094246c99a8996 100644
--- a/testsuite/tests/partial-sigs/should_compile/WarningWildcardInstantiations.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/WarningWildcardInstantiations.stderr
@@ -4,8 +4,8 @@ TYPE SIGNATURES
 TYPE CONSTRUCTORS
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 
 WarningWildcardInstantiations.hs:5:14: warning: [-Wpartial-type-signatures (in -Wdefault)]
     • Found type wildcard ‘_a’ standing for ‘a’
diff --git a/testsuite/tests/rename/should_fail/rnfail040.stderr b/testsuite/tests/rename/should_fail/rnfail040.stderr
index 0bd4cf7ac1215a13c557f2a5d5e3dd1e14922e3a..505688dd5b116de5799ab3b72a36a5153e8340a9 100644
--- a/testsuite/tests/rename/should_fail/rnfail040.stderr
+++ b/testsuite/tests/rename/should_fail/rnfail040.stderr
@@ -3,7 +3,7 @@ rnfail040.hs:7:12: error:
     Conflicting exports for ‘nub’:
        ‘module M’ exports ‘M.nub’
          imported from ‘Data.List’ at rnfail040.hs:10:2-22
-         (and originally defined in ‘base-4.11.0.0:Data.OldList’)
+         (and originally defined in ‘base-4.11.1.0:Data.OldList’)
        ‘module M’ exports ‘T.nub’
          imported from ‘Rnfail040_A’ at rnfail040.hs:11:2-24
          (and originally defined at Rnfail040_A.hs:2:3-5)
diff --git a/testsuite/tests/roles/should_compile/Roles1.stderr b/testsuite/tests/roles/should_compile/Roles1.stderr
index 48e35a0202c401ac91c412db6ad957d7fc30b213..cca598a0c0868ccc070bdbc43f1d8d0d1c0bf147 100644
--- a/testsuite/tests/roles/should_compile/Roles1.stderr
+++ b/testsuite/tests/roles/should_compile/Roles1.stderr
@@ -21,8 +21,8 @@ TYPE CONSTRUCTORS
   data T7 (a :: k) b = K7 b
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 
 ==================== Typechecker ====================
 Roles1.$tcT7
diff --git a/testsuite/tests/roles/should_compile/Roles14.stderr b/testsuite/tests/roles/should_compile/Roles14.stderr
index aa83a5571eac9685796c4875759c256df7bfeb13..4c9120bb17091f71c0d2d923b12cbd9442b526f1 100644
--- a/testsuite/tests/roles/should_compile/Roles14.stderr
+++ b/testsuite/tests/roles/should_compile/Roles14.stderr
@@ -8,8 +8,8 @@ TYPE CONSTRUCTORS
 COERCION AXIOMS
   axiom Roles12.N:C2 :: C2 a = a -> a -- Defined at Roles14.hs:6:1
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 
 ==================== Typechecker ====================
 Roles12.$tcC2
diff --git a/testsuite/tests/roles/should_compile/Roles2.stderr b/testsuite/tests/roles/should_compile/Roles2.stderr
index eeb6df294302a70f3909453c72e86e6386fa2a28..154ceac53099351c049f796c61dede5aeb651a68 100644
--- a/testsuite/tests/roles/should_compile/Roles2.stderr
+++ b/testsuite/tests/roles/should_compile/Roles2.stderr
@@ -7,8 +7,8 @@ TYPE CONSTRUCTORS
   data T2 a = K2 (FunPtr a)
 COERCION AXIOMS
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 
 ==================== Typechecker ====================
 Roles2.$tcT2
diff --git a/testsuite/tests/roles/should_compile/Roles3.stderr b/testsuite/tests/roles/should_compile/Roles3.stderr
index b69b0a14abfa880c297be4e91d8b9a180f4d98ef..387ec6509de894515754f490565dd3deedcbabc4 100644
--- a/testsuite/tests/roles/should_compile/Roles3.stderr
+++ b/testsuite/tests/roles/should_compile/Roles3.stderr
@@ -29,8 +29,8 @@ COERCION AXIOMS
   axiom Roles3.N:C4 ::
     C4 a b = a -> F4 b -> F4 b -- Defined at Roles3.hs:18:1
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 
 ==================== Typechecker ====================
 Roles3.$tcC4
diff --git a/testsuite/tests/roles/should_compile/Roles4.stderr b/testsuite/tests/roles/should_compile/Roles4.stderr
index 10c698815a105c2c89070be1575c470e2e3974a2..0fdaeec5e80a3dd78fcfb8eb11b988e385118062 100644
--- a/testsuite/tests/roles/should_compile/Roles4.stderr
+++ b/testsuite/tests/roles/should_compile/Roles4.stderr
@@ -14,8 +14,8 @@ COERCION AXIOMS
   axiom Roles4.N:C3 ::
     C3 a = a -> Syn1 a -- Defined at Roles4.hs:11:1
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 
 ==================== Typechecker ====================
 Roles4.$tcC3
diff --git a/testsuite/tests/roles/should_compile/T8958.stderr b/testsuite/tests/roles/should_compile/T8958.stderr
index e7a5cc5263d35b13e659df13067c253dc76cb98a..1bf3619ac98386f300ffd8381cfb2703ffe996f9 100644
--- a/testsuite/tests/roles/should_compile/T8958.stderr
+++ b/testsuite/tests/roles/should_compile/T8958.stderr
@@ -16,8 +16,8 @@ INSTANCES
     -- Defined at T8958.hs:10:10
   instance [incoherent] Nominal a -- Defined at T8958.hs:7:10
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
 
 ==================== Typechecker ====================
 T8958.$tcMap
diff --git a/testsuite/tests/safeHaskell/check/Check01.stderr b/testsuite/tests/safeHaskell/check/Check01.stderr
index 1222b6578b88c62fe4e6476e4a258c3b14dc9dfd..8cbb9ac6095dad6e69284ba8822c6329d85b214b 100644
--- a/testsuite/tests/safeHaskell/check/Check01.stderr
+++ b/testsuite/tests/safeHaskell/check/Check01.stderr
@@ -1,4 +1,4 @@
 [3 of 3] Compiling Check01          ( Check01.hs, Check01.o )
 
 <no location info>: error:
-    The package (base-4.11.0.0) is required to be trusted but it isn't!
+    The package (base-4.11.1.0) is required to be trusted but it isn't!
diff --git a/testsuite/tests/safeHaskell/check/Check06.stderr b/testsuite/tests/safeHaskell/check/Check06.stderr
index 52a58c521028f2ddd034914f384ad10617ea6545..ba0f62bc0350ffaf7924fb10d6ac6384b42ca0af 100644
--- a/testsuite/tests/safeHaskell/check/Check06.stderr
+++ b/testsuite/tests/safeHaskell/check/Check06.stderr
@@ -2,4 +2,4 @@
 [2 of 2] Compiling Check06          ( Check06.hs, Check06.o )
 
 <no location info>: error:
-    The package (base-4.11.0.0) is required to be trusted but it isn't!
+    The package (base-4.11.1.0) is required to be trusted but it isn't!
diff --git a/testsuite/tests/safeHaskell/check/Check08.stderr b/testsuite/tests/safeHaskell/check/Check08.stderr
index 92e7c059dedcaeb219839917fe554bd51154ebfa..90169a70f13e8d971fe7519cc7feb589eacfef04 100644
--- a/testsuite/tests/safeHaskell/check/Check08.stderr
+++ b/testsuite/tests/safeHaskell/check/Check08.stderr
@@ -3,4 +3,4 @@
 [3 of 3] Compiling Check08          ( Check08.hs, Check08.o )
 
 <no location info>: error:
-    The package (base-4.11.0.0) is required to be trusted but it isn't!
+    The package (base-4.11.1.0) is required to be trusted but it isn't!
diff --git a/testsuite/tests/safeHaskell/check/Check09.stderr b/testsuite/tests/safeHaskell/check/Check09.stderr
index e33dfa4c430429c88eb63921de55af59d0134ef5..eb2b2fafa582dca43b02afea5a18016487646723 100644
--- a/testsuite/tests/safeHaskell/check/Check09.stderr
+++ b/testsuite/tests/safeHaskell/check/Check09.stderr
@@ -1,7 +1,7 @@
 
 Check09.hs:4:1: error:
     Prelude: Can't be safely imported!
-    The package (base-4.11.0.0) the module resides in isn't trusted.
+    The package (base-4.11.1.0) the module resides in isn't trusted.
 
 Check09.hs:5:1: error:
     Data.ByteString.Char8: Can't be safely imported!
diff --git a/testsuite/tests/safeHaskell/check/pkg01/ImpSafe01.stderr b/testsuite/tests/safeHaskell/check/pkg01/ImpSafe01.stderr
index e3978d251fbc1ba5dbd081d16db3b0d0c43bb57c..91368e2d91997bf32cacfdc32c9bf7ceac7825f5 100644
--- a/testsuite/tests/safeHaskell/check/pkg01/ImpSafe01.stderr
+++ b/testsuite/tests/safeHaskell/check/pkg01/ImpSafe01.stderr
@@ -1,4 +1,4 @@
 
 ImpSafe01.hs:9:1: error:
     Data.Word: Can't be safely imported!
-    The package (base-4.11.0.0) the module resides in isn't trusted.
+    The package (base-4.11.1.0) the module resides in isn't trusted.
diff --git a/testsuite/tests/safeHaskell/check/pkg01/ImpSafe04.stderr b/testsuite/tests/safeHaskell/check/pkg01/ImpSafe04.stderr
index e340c6776befeaa81f1a9d4d3d96de313f681441..4faeb0664fa2f8ce43fe1c1a2ec900342051e1d5 100644
--- a/testsuite/tests/safeHaskell/check/pkg01/ImpSafe04.stderr
+++ b/testsuite/tests/safeHaskell/check/pkg01/ImpSafe04.stderr
@@ -1,4 +1,4 @@
 
 ImpSafe04.hs:9:1: error:
     Data.Word: Can't be safely imported!
-    The package (base-4.11.0.0) the module resides in isn't trusted.
+    The package (base-4.11.1.0) the module resides in isn't trusted.
diff --git a/testsuite/tests/safeHaskell/flags/SafeFlags17.stderr b/testsuite/tests/safeHaskell/flags/SafeFlags17.stderr
index 8f4332b64db3996c5c6c9dd89d252170abad3b4c..a1a9537815a9bfdabf89384fe61c73dbd754db5d 100644
--- a/testsuite/tests/safeHaskell/flags/SafeFlags17.stderr
+++ b/testsuite/tests/safeHaskell/flags/SafeFlags17.stderr
@@ -1,4 +1,4 @@
 
 SafeFlags17.hs:4:8: error:
     Prelude: Can't be safely imported!
-    The package (base-4.11.0.0) the module resides in isn't trusted.
+    The package (base-4.11.1.0) the module resides in isn't trusted.
diff --git a/testsuite/tests/typecheck/should_compile/T12763.stderr b/testsuite/tests/typecheck/should_compile/T12763.stderr
index 065619c30656934597efc382f7ee0abf978e8f2b..b4ad9fc2603748c028c13748333a81ce6bfd1834 100644
--- a/testsuite/tests/typecheck/should_compile/T12763.stderr
+++ b/testsuite/tests/typecheck/should_compile/T12763.stderr
@@ -10,5 +10,5 @@ COERCION AXIOMS
 INSTANCES
   instance C Int -- Defined at T12763.hs:9:10
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/typecheck/should_compile/holes.stderr b/testsuite/tests/typecheck/should_compile/holes.stderr
index 80092cc8969453824cdfadda5ce2f026c1fe1494..c2d7e53b13dd00fc739b92c043439892b850dec4 100644
--- a/testsuite/tests/typecheck/should_compile/holes.stderr
+++ b/testsuite/tests/typecheck/should_compile/holes.stderr
@@ -378,16 +378,16 @@ holes.hs:11:15: warning: [-Wtyped-holes (in -Wdefault)]
            (and originally defined in ‘System.IO’))
         lines :: String -> [String]
           (imported from ‘Prelude’ at holes.hs:1:8-12
-           (and originally defined in ‘base-4.11.0.0:Data.OldList’))
+           (and originally defined in ‘base-4.11.1.0:Data.OldList’))
         unlines :: [String] -> String
           (imported from ‘Prelude’ at holes.hs:1:8-12
-           (and originally defined in ‘base-4.11.0.0:Data.OldList’))
+           (and originally defined in ‘base-4.11.1.0:Data.OldList’))
         unwords :: [String] -> String
           (imported from ‘Prelude’ at holes.hs:1:8-12
-           (and originally defined in ‘base-4.11.0.0:Data.OldList’))
+           (and originally defined in ‘base-4.11.1.0:Data.OldList’))
         words :: String -> [String]
           (imported from ‘Prelude’ at holes.hs:1:8-12
-           (and originally defined in ‘base-4.11.0.0:Data.OldList’))
+           (and originally defined in ‘base-4.11.1.0:Data.OldList’))
         error :: forall (a :: TYPE r).
                  GHC.Stack.Types.HasCallStack =>
                  [Char] -> a
diff --git a/testsuite/tests/typecheck/should_compile/holes3.stderr b/testsuite/tests/typecheck/should_compile/holes3.stderr
index d18104f58d803759e2d3132f8b0e67a7835540bc..a868ab33247561a1f2cb705189c6806de0924caa 100644
--- a/testsuite/tests/typecheck/should_compile/holes3.stderr
+++ b/testsuite/tests/typecheck/should_compile/holes3.stderr
@@ -381,16 +381,16 @@ holes3.hs:11:15: error:
            (and originally defined in ‘System.IO’))
         lines :: String -> [String]
           (imported from ‘Prelude’ at holes3.hs:1:8-13
-           (and originally defined in ‘base-4.11.0.0:Data.OldList’))
+           (and originally defined in ‘base-4.11.1.0:Data.OldList’))
         unlines :: [String] -> String
           (imported from ‘Prelude’ at holes3.hs:1:8-13
-           (and originally defined in ‘base-4.11.0.0:Data.OldList’))
+           (and originally defined in ‘base-4.11.1.0:Data.OldList’))
         unwords :: [String] -> String
           (imported from ‘Prelude’ at holes3.hs:1:8-13
-           (and originally defined in ‘base-4.11.0.0:Data.OldList’))
+           (and originally defined in ‘base-4.11.1.0:Data.OldList’))
         words :: String -> [String]
           (imported from ‘Prelude’ at holes3.hs:1:8-13
-           (and originally defined in ‘base-4.11.0.0:Data.OldList’))
+           (and originally defined in ‘base-4.11.1.0:Data.OldList’))
         error :: forall (a :: TYPE r).
                  GHC.Stack.Types.HasCallStack =>
                  [Char] -> a
diff --git a/testsuite/tests/typecheck/should_compile/tc231.stderr b/testsuite/tests/typecheck/should_compile/tc231.stderr
index 0827177c6b808ea77fc754032308e399887553ba..5c90453356ac2c9631c36cc40a98312dc4b71647 100644
--- a/testsuite/tests/typecheck/should_compile/tc231.stderr
+++ b/testsuite/tests/typecheck/should_compile/tc231.stderr
@@ -19,5 +19,5 @@ COERCION AXIOMS
     Zork s a b = forall chain. Q s a chain -> ST s ()
       -- Defined at tc231.hs:25:1
 Dependent modules: []
-Dependent packages: [base-4.11.0.0, ghc-prim-0.5.2.0,
-                     integer-gmp-1.0.1.0]
+Dependent packages: [base-4.11.1.0, ghc-prim-0.5.2.0,
+                     integer-gmp-1.0.2.0]
diff --git a/testsuite/tests/typecheck/should_fail/TcStaticPointersFail02.stderr b/testsuite/tests/typecheck/should_fail/TcStaticPointersFail02.stderr
index 0faf435ef9db32813efc9a80c7cce007ff558e0f..3d88344a2029c98e0ab2510ffddae04bb517aa1b 100644
--- a/testsuite/tests/typecheck/should_fail/TcStaticPointersFail02.stderr
+++ b/testsuite/tests/typecheck/should_fail/TcStaticPointersFail02.stderr
@@ -1,13 +1,13 @@
 
 TcStaticPointersFail02.hs:9:6: error:
-    • No instance for (base-4.11.0.0:Data.Typeable.Internal.Typeable b)
+    • No instance for (base-4.11.1.0:Data.Typeable.Internal.Typeable b)
         arising from a static form
     • In the expression: static (undefined :: (forall a. a -> a) -> b)
       In an equation for ‘f1’:
           f1 = static (undefined :: (forall a. a -> a) -> b)
 
 TcStaticPointersFail02.hs:12:6: error:
-    • No instance for (base-4.11.0.0:Data.Typeable.Internal.Typeable
+    • No instance for (base-4.11.1.0:Data.Typeable.Internal.Typeable
                          (Monad m => a -> m a))
         arising from a static form
         (maybe you haven't applied a function to enough arguments?)
diff --git a/testsuite/tests/typecheck/should_fail/tcfail182.stderr b/testsuite/tests/typecheck/should_fail/tcfail182.stderr
index e86aa010338882bae9142d80dbd3f5f6162e91a0..7d32e108983ba61e365828ad41f756bd7ef629b6 100644
--- a/testsuite/tests/typecheck/should_fail/tcfail182.stderr
+++ b/testsuite/tests/typecheck/should_fail/tcfail182.stderr
@@ -3,7 +3,7 @@ tcfail182.hs:9:3: error:
     • Couldn't match expected type ‘Prelude.Maybe a’
                   with actual type ‘Maybe a0’
       NB: ‘Maybe’ is defined at tcfail182.hs:6:1-18
-          ‘Prelude.Maybe’ is defined in ‘GHC.Base’ in package ‘base-4.11.0.0’
+          ‘Prelude.Maybe’ is defined in ‘GHC.Base’ in package ‘base-4.11.1.0’
     • In the pattern: Foo
       In an equation for ‘f’: f Foo = 3
     • Relevant bindings include