ghc-source-gen 0.4.4.0 → 0.4.4.1
raw patch · 3 files changed
+9/−7 lines, 3 filesnew-uploaderPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- GHC.SourceGen.Module: type HsModule' = HsModule
+ GHC.SourceGen.Module: type HsModule' = HsModule GhcPs
Files
- ChangeLog.md +4/−0
- ghc-source-gen.cabal +5/−5
- src/GHC/SourceGen/Module.hs +0/−2
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for haskell-syntax ++# 0.4.4.1+- Repair unintentionally broken GHC 8.10.7 support.+ # 0.4.4.0 - Support GHC 9.6.
ghc-source-gen.cabal view
@@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.34.6.+-- This file has been generated from package.yaml by hpack version 0.36.0. -- -- see: https://github.com/sol/hpack name: ghc-source-gen-version: 0.4.4.0+version: 0.4.4.1 synopsis: Constructs Haskell syntax trees for the GHC API. description: @ghc-source-gen@ is a library for generating Haskell source code. It uses the <https://hackage.haskell.org/package/ghc ghc> library@@ -62,6 +62,7 @@ build-depends: base >=4.7 && <5 , ghc >=8.4 && <9.7+ default-language: Haskell2010 if impl(ghc<8.10) other-modules: GHC.Hs@@ -75,7 +76,6 @@ GHC.Hs.Utils hs-source-dirs: compat- default-language: Haskell2010 if impl(ghc<9.0) other-modules: GHC.Hs.Type@@ -130,12 +130,12 @@ , ghc-source-gen , tasty >=1.0 && <1.5 , tasty-hunit ==0.10.*+ default-language: Haskell2010 if impl(ghc<9.0) other-modules: GHC.Utils.Outputable hs-source-dirs: compat- default-language: Haskell2010 test-suite pprint_test type: exitcode-stdio-1.0@@ -156,6 +156,7 @@ , ghc-source-gen , tasty >=1.0 && <1.5 , tasty-hunit ==0.10.*+ default-language: Haskell2010 if impl(ghc<9.0) other-modules: GHC.Driver.Monad@@ -163,4 +164,3 @@ GHC.Utils.Outputable hs-source-dirs: compat- default-language: Haskell2010
src/GHC/SourceGen/Module.hs view
@@ -63,9 +63,7 @@ import GHC.SourceGen.Syntax.Internal import GHC.SourceGen.Name.Internal import GHC.SourceGen.Lit.Internal (noSourceText)-#if MIN_VERSION_ghc(9,0,0) import GHC.SourceGen.Name (unqual)-#endif #if MIN_VERSION_ghc(9,4,0) import GHC.SourceGen.Name (RdrNameStr, ModuleNameStr(unModuleNameStr), OccNameStr) import GHC.Types.SourceText (SourceText(NoSourceText))