packages feed

ghc-boot-th 8.8.3 → 8.10.1

raw patch · 2 files changed

+8/−4 lines, 2 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

+ GHC.LanguageExtensions.Type: CUSKs :: Extension
+ GHC.LanguageExtensions.Type: ImportQualifiedPost :: Extension
+ GHC.LanguageExtensions.Type: StandaloneKindSignatures :: Extension
+ GHC.LanguageExtensions.Type: UnliftedNewtypes :: Extension

Files

GHC/LanguageExtensions/Type.hs view
@@ -8,7 +8,7 @@ -- -- A data type defining the language extensions supported by GHC. ---{-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveGeneric, Safe #-} module GHC.LanguageExtensions.Type ( Extension(..) ) where  import Prelude -- See note [Why do we import Prelude here?]@@ -49,6 +49,7 @@    | AllowAmbiguousTypes    | UnboxedTuples    | UnboxedSums+   | UnliftedNewtypes    | BangPatterns    | TypeFamilies    | TypeFamilyDependencies@@ -139,4 +140,7 @@    | NumericUnderscores    | QuantifiedConstraints    | StarIsType+   | ImportQualifiedPost+   | CUSKs+   | StandaloneKindSignatures    deriving (Eq, Enum, Show, Generic, Bounded)
ghc-boot-th.cabal view
@@ -1,12 +1,12 @@ cabal-version:  >=1.10 name:           ghc-boot-th-version:        8.8.3+version:        8.10.1  license:        BSD3 license-file:   LICENSE category:       GHC maintainer:     ghc-devs@haskell.org-bug-reports:    https://gitlab.haskell.org/ghc/ghc/issues+bug-reports:    https://gitlab.haskell.org/ghc/ghc/issues/new synopsis:       Shared functionality between GHC and the `template-haskell`                 library description:    This library contains various bits shared between the @ghc@ and@@ -32,4 +32,4 @@             GHC.ForeignSrcLang.Type             GHC.Lexeme -    build-depends: base       >= 4.7 && < 4.14+    build-depends: base       >= 4.7 && < 4.15