binary-tagged 0.1.4.1 → 0.1.4.2
raw patch · 3 files changed
+5/−1 lines, 3 filesdep ~SHAdep ~aesondep ~arrayPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: SHA, aeson, array, base, base16-bytestring, binary, binary-orphans, bytestring, containers, generics-sop, hashable, nats, scientific, semigroups, tagged, text, time, unordered-containers, vector
API changes (from Hackage documentation)
Files
- CHANGELOG.md +2/−0
- binary-tagged.cabal +1/−1
- src/Data/Binary/Tagged.hs +2/−0
CHANGELOG.md view
@@ -1,3 +1,5 @@+- 0.1.4.2 (2016-12-05)+ - Fix compilation with generics-sop-0.2.3.0 - 0.1.4.1 (2016-09-20) - Print mismatching hashes in base16 encoding - 0.1.4.0 (2016-04-12)
binary-tagged.cabal view
@@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: binary-tagged-version: 0.1.4.1+version: 0.1.4.2 synopsis: Tagged binary serialisation. description: Check <https://github.com/phadej/binary-tagged#readme README on Github> category: Web
src/Data/Binary/Tagged.hs view
@@ -354,9 +354,11 @@ -- SOP helpers ------------------------------------------------------------------------------- +#if !MIN_VERSION_generics_sop(0,2,3) datatypeName :: DatatypeInfo xss -> DatatypeName datatypeName (Newtype _ d _) = d datatypeName (ADT _ d _) = d+#endif -- | Interleaving --