ghc-hie 0.0.2 → 0.0.3
raw patch · 3 files changed
+6/−5 lines, 3 filesdep ~ghcPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: ghc
API changes (from Hackage documentation)
Files
- ghc-hie.cabal +3/−3
- src/GHC/Iface/Ext/Binary.hs +1/−1
- test/GHC/Iface/Ext/BinarySpec.hs +2/−1
ghc-hie.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: ghc-hie-version: 0.0.2+version: 0.0.3 synopsis: HIE-file parsing machinery that supports multiple versions of GHC category: Development homepage: https://github.com/sol/ghc-hie#readme@@ -49,7 +49,7 @@ , deepseq , directory , filepath- , ghc ==9.8.4 || ==9.10.1 || ==9.10.2 || ==9.12.1 || ==9.12.2+ , ghc ==9.8.4 || ==9.10.1 || ==9.10.2 || ==9.10.3 || ==9.12.1 || ==9.12.2 , ghc-boot , transformers default-language: GHC2021@@ -90,7 +90,7 @@ , deepseq , directory , filepath- , ghc ==9.8.4 || ==9.10.1 || ==9.10.2 || ==9.12.1 || ==9.12.2+ , ghc ==9.8.4 || ==9.10.1 || ==9.10.2 || ==9.10.3 || ==9.12.1 || ==9.12.2 , ghc-boot , hspec ==2.* , process
src/GHC/Iface/Ext/Binary.hs view
@@ -31,7 +31,7 @@ supported908 = [9081 .. 9084] supported910 :: [Integer]-supported910 = [9101 .. 9102]+supported910 = [9101 .. 9103] supported912 :: [Integer] supported912 = [9121 .. 9122]
test/GHC/Iface/Ext/BinarySpec.hs view
@@ -64,6 +64,7 @@ , ("9.8.4", 9084) , ("9.10.1", 9101) , ("9.10.2", 9102)+ , ("9.10.3", 9103) , ("9.12.1", 9121) , ("9.12.2", 9122) ]@@ -78,7 +79,7 @@ message = "Unsupported HIE version 9048 for file " <> hieFile- <> ", supported versions: 9122, 9121, 9102, 9101, 9084, 9083, 9082, 9081"+ <> ", supported versions: 9122, 9121, 9103, 9102, 9101, 9084, 9083, 9082, 9081" expected = userError message nameCache <- initNameCache 'r' mempty readHieFile nameCache hieFile `shouldThrow` (== expected)