packages feed

store 0.7.12 → 0.7.13

raw patch · 4 files changed

+16/−3 lines, 4 filesdep ~template-haskelldep ~time

Dependency ranges changed: template-haskell, time

Files

ChangeLog.md view
@@ -1,5 +1,14 @@ # ChangeLog +## 0.7.13++* Fix build with `time >= 1.11`. See [#162][].++* Adds missing `liftTyped` method for `Lift TypeHash`. See [#163][].++[#162]: https://github.com/mgsloan/store/issues/162+[#163]: https://github.com/mgsloan/store/issues/163+ ## 0.7.12  * Build with ghc-9.0.1
src/Data/Store/Internal.hs view
@@ -142,6 +142,7 @@ #endif #if MIN_VERSION_time(1,11,0) import qualified Data.Time.Calendar.Quarter as Time+import qualified Data.Time.Calendar.WeekDate as Time #endif  #ifdef INTEGER_GMP
src/Data/Store/TypeHash/Internal.hs view
@@ -28,7 +28,7 @@ import           GHC.Generics (Generic) import           Language.Haskell.TH import           Language.Haskell.TH.ReifyMany (reifyMany)-import           Language.Haskell.TH.Syntax (Lift(lift))+import           Language.Haskell.TH.Syntax (Lift(..), unsafeTExpCoerce) import           Prelude  {-# DEPRECATED mkManyHasTypeHash, mkHasTypeHash@@ -63,6 +63,9 @@  instance Lift TypeHash where     lift = staticByteStringExp . unStaticSize . unTypeHash+#if MIN_VERSION_template_haskell(2,16,0)+    liftTyped = Code . unsafeTExpCoerce . lift+#endif  reifyManyTyDecls :: ((Name, Info) -> Q (Bool, [Name]))                  -> [Name]
store.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: d81ae535cb7e6292f33518af0a5a35a6bfdcba26633b44b984a68afdabe1afac+-- hash: 3ef66f219609b49f3b30e4dc3e2e8ed51f745f6a36428094f3d1f1ed91b7105e  name:           store-version:        0.7.12+version:        0.7.13 synopsis:       Fast binary serialization category:       Serialization, Data homepage:       https://github.com/mgsloan/store#readme