packages feed

store 0.7.10 → 0.7.11

raw patch · 3 files changed

+10/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,15 +1,19 @@ # ChangeLog +## 0.7.11++* Fixes testsuite compilation with `network >= 3.1.2`. See [#159][].+ ## 0.7.10  * Adds `Store` instances for all serializable datatypes exported by-  the `time` library. See [#158].+  the `time` library. See [#158][].  [#158]: https://github.com/mgsloan/store/issues/158  ## 0.7.9 -* Attempts to fix build on ghc-7.8.4. See [#157].+* Attempts to fix build on ghc-7.8.4. See [#157][].  [#157]: https://github.com/mgsloan/store/issues/157 
store.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 49d04753317b8547f1c577aa466486464ac89127477c99f27fa87ff973f90176+-- hash: 549602d6bd9e31fc5c98384ab6bbb7e67b7f176ba9366aba8d2241154ee91698  name:           store-version:        0.7.10+version:        0.7.11 synopsis:       Fast binary serialization category:       Serialization, Data homepage:       https://github.com/mgsloan/store#readme
test/Data/StoreSpec.hs view
@@ -102,9 +102,11 @@ -- Serial instances for (Num a, Bounded a) types. Only really -- appropriate for the use here. +#if !MIN_VERSION_network(3,1,2) instance Bounded PortNumber where   minBound = 0   maxBound = 65535+#endif  $(do let ns = [ ''PortNumber