diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2018-04-13 11:31:09 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-04-13 11:33:09 -0400 |
commit | c4814ab6b8d756ae0e32c9a9f44e4888c4e24763 (patch) | |
tree | 0a99a3053c705ea067a5ab94423fe557fc43f88a | |
parent | b1386942e63ba5fe4b2da27f5025afdf80356392 (diff) | |
download | haskell-c4814ab6b8d756ae0e32c9a9f44e4888c4e24763.tar.gz |
Bump version numbers: base-4.11.1.0, integer-gmp-1.0.2.0
This takes care of bumping the `base` and `integer-gmp`
minor version numbers in anticipation of a GHC 8.4.2 release.
While I was in town, I also filled in a `@since TODO` Haddock
annotation for `powModSecInteger` in `integer-gmp` with
`1.0.2.0`, and updated the changelog accordingly.
Test Plan: ./validate
Reviewers: hvr, goldfire, bgamari
Reviewed By: bgamari
Subscribers: thomie, carter
GHC Trac Issues: #15025
Differential Revision: https://phabricator.haskell.org/D4586
83 files changed, 176 insertions, 159 deletions
diff --git a/docs/users_guide/8.4.2-notes.rst b/docs/users_guide/8.4.2-notes.rst index 7002caae0d..e579e83c7c 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 0a91315a61..f7bbfaa3ae 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 16e183e6b2..56d8ffc9d4 100644 --- a/libraries/base/changelog.md +++ b/libraries/base/changelog.md @@ -1,6 +1,8 @@ # Changelog for [`base` package](http://hackage.haskell.org/package/base) ## 4.12.0.0 *TBA* + * Bundled with GHC *TBA* + * Move the module `Data.Functor.Contravariant` from the `contravariant` package to `base`. @@ -10,6 +12,8 @@ `GHC.Generics`. (#14849) ## 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 b817881191..51c84bc047 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 d2f6e3cedf..5d2f89039c 100644 --- a/libraries/integer-gmp/integer-gmp.cabal +++ b/libraries/integer-gmp/integer-gmp.cabal @@ -1,6 +1,6 @@ cabal-version: 2.0 name: integer-gmp -version: 1.0.1.0 +version: 1.0.2.0 synopsis: Integer library based on GMP license: BSD3 diff --git a/libraries/integer-gmp/src/GHC/Integer/Type.hs b/libraries/integer-gmp/src/GHC/Integer/Type.hs index 5dcbdce2b8..9ea7c0641c 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 c4c7c0b4fd..4251f983f2 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 840d21f5f1..05731ecdc7 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 8cfc511e16..e24158d402 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 a417b7e2a9..ecf2e30696 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 3aa8233925..5520e557c4 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 3e8d27b896..ded4ec5b0c 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 f6c342e8a1..4ed7ae73d3 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 dc97101cc5..0cf0306c0c 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 4a0ac286a6..62b32664e8 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 0604f672a8..d2399a9add 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 baa760c261..510e24fdf3 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 68fc1e10bc..4ce53f90b4 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 e8e2bf736e..bef61fd6bf 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 6e61f43ae8..ab9b5dd772 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 6a825e45dc..f8139c0b5c 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 34f1e7f07a..90a11e3e98 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 130ae5b605..0ab5e9ce39 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 7777e4626f..a7a6342037 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 dac63c4800..800d744f83 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 df1b5b8277..33726c2e9e 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 df1b5b8277..33726c2e9e 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 83ac659d95..5b3f4ce0b4 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 cd10137027..043d0d4dd5 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 abdb5d1ad1..abadad0525 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 8c65e625ad..f4a87187ec 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 130ae5b605..0ab5e9ce39 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 130ae5b605..0ab5e9ce39 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 3d72b56d10..611d169bbe 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 ae94dcc6f9..86c5f4609f 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 2de5614945..2d5fe5cad3 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 7de16b9027..1c01100940 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 7de16b9027..1c01100940 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 8f4bce17a2..026fdc5ad4 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 130ae5b605..0ab5e9ce39 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 4d2df7fda3..0561b3a758 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 4d2df7fda3..0561b3a758 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 1f549d7f9a..526c715144 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 12d34ce56c..bf1548e5f1 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 1f549d7f9a..526c715144 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 48b9762c73..06de3e3b97 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 2a17aba1e9..9062962336 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 28723de839..e30bf7e89e 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 9431aa699c..14fa88e24a 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 6e58ce4849..f8514750f2 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 e0bb4fcfe4..e227d7d7cc 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 130ae5b605..0ab5e9ce39 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 45c936fb13..6c39c21e41 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 4615a2b751..b4c5270071 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 df0d2f14b1..d2e89d5a45 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 0b23a6d50b..2c6c54eeb2 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 c9562da278..00c2c0b6db 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 dae1adccb8..3373618dbb 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 02f5ad7243..b7e0e4a953 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 cbd4ada394..6b248d7d47 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 0f9828235d..fed9e808c7 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 f5ac3a8aed..edd18a41ce 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 e7ce94abbe..47de15ab45 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 0bd4cf7ac1..505688dd5b 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 48e35a0202..cca598a0c0 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 aa83a5571e..4c9120bb17 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 eeb6df2943..154ceac530 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 b69b0a14ab..387ec6509d 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 10c698815a..0fdaeec5e8 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 e7a5cc5263..1bf3619ac9 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 1222b6578b..8cbb9ac609 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 52a58c5210..ba0f62bc03 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 92e7c059de..90169a70f1 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 e33dfa4c43..eb2b2fafa5 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 e3978d251f..91368e2d91 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 e340c6776b..4faeb0664f 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 8f4332b64d..a1a9537815 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 065619c306..b4ad9fc260 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 7e6d7743de..4c7c623efd 100644 --- a/testsuite/tests/typecheck/should_compile/holes.stderr +++ b/testsuite/tests/typecheck/should_compile/holes.stderr @@ -373,10 +373,10 @@ holes.hs:11:15: warning: [-Wtyped-holes (in -Wdefault)] (and originally defined in ‘Data.Tuple’)) 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’)) head :: forall a. [a] -> a (imported from ‘Prelude’ at holes.hs:1:8-12 (and originally defined in ‘GHC.List’)) @@ -385,10 +385,10 @@ holes.hs:11:15: warning: [-Wtyped-holes (in -Wdefault)] (and originally defined in ‘GHC.List’)) 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’)) 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’)) repeat :: forall a. a -> [a] (imported from ‘Prelude’ at holes.hs:1:8-12 (and originally defined in ‘GHC.List’)) diff --git a/testsuite/tests/typecheck/should_compile/holes3.stderr b/testsuite/tests/typecheck/should_compile/holes3.stderr index 6bebd3788b..6857e5eec3 100644 --- a/testsuite/tests/typecheck/should_compile/holes3.stderr +++ b/testsuite/tests/typecheck/should_compile/holes3.stderr @@ -376,10 +376,10 @@ holes3.hs:11:15: error: (and originally defined in ‘Data.Tuple’)) 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’)) head :: forall a. [a] -> a (imported from ‘Prelude’ at holes3.hs:1:8-13 (and originally defined in ‘GHC.List’)) @@ -388,10 +388,10 @@ holes3.hs:11:15: error: (and originally defined in ‘GHC.List’)) 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’)) 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’)) repeat :: forall a. a -> [a] (imported from ‘Prelude’ at holes3.hs:1:8-13 (and originally defined in ‘GHC.List’)) diff --git a/testsuite/tests/typecheck/should_compile/tc231.stderr b/testsuite/tests/typecheck/should_compile/tc231.stderr index 0827177c6b..5c90453356 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 0faf435ef9..3d88344a20 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 e86aa01033..7d32e10898 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 |