packages feed

hiedb 0.5.0.0 → 0.5.0.1

raw patch · 3 files changed

+7/−5 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for hiedb +## 0.5.0.1 -- 2024-01-12++- Fix incorrect Show Symbol instance in 0.5.0.0+ ## 0.5.0.0 -- 2024-01-12  - Handle duplicate record fields in GHC 9.8 instead of crashing
hiedb.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.4 name:                hiedb-version:             0.5.0.0+version:             0.5.0.1 synopsis:            Generates a references DB from .hie files description:         Tool and library to index and query a collection of `.hie` files bug-reports:         https://github.com/wz1000/HieDb/issues
src/HieDb/Types.hs view
@@ -271,15 +271,13 @@     } deriving (Eq, Ord)  instance Show Symbol where-    show s =  toNsChar (occNameSpace $ symName s)-           <> (  ':'-              :  occNameString (symName s)+    show s =     toNsChar (occNameSpace $ symName s)+              <> occNameString (symName s)               <> ":"               <> moduleNameString (moduleName $ symModule s)               <> ":"         --       <> unitIdString (moduleUnit $ symModule s)               <> unitString (moduleUnit $ symModule s)-              )  instance Read Symbol where   readsPrec = const $ R.readP_to_S readSymbol