automotive-cse 0.1.0.0 → 0.1.1.0
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Codec.Automotive.CSE: instance GHC.Classes.Ord Codec.Automotive.CSE.UID
Files
- automotive-cse.cabal +1/−1
- src/Codec/Automotive/CSE.hs +1/−1
automotive-cse.cabal view
@@ -1,6 +1,6 @@ name: automotive-cse-version: 0.1.0.0+version: 0.1.1.0 synopsis: Automotive CSE emulation description: This package includes Cryptography Security Engine (CSE) codec emulation for automotive things.
src/Codec/Automotive/CSE.hs view
@@ -148,7 +148,7 @@ makeK4 = kdfMac -newtype UID = UID ByteString deriving Eq+newtype UID = UID ByteString deriving (Eq, Ord) instance Show UID where show (UID s) = unwords ["UID", hdump s]