packages feed

bond-haskell 0.1.3.0 → 0.1.4.0

raw patch · 2 files changed

+5/−3 lines, 2 filesdep ~bond-haskell-compilerPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: bond-haskell-compiler

API changes (from Hackage documentation)

Files

bond-haskell.cabal view
@@ -1,5 +1,5 @@ name:                bond-haskell-version:             0.1.3.0+version:             0.1.4.0 synopsis:            Runtime support for BOND serialization description:         Bond is a cross-platform framework for handling schematized                      data. It supports cross-language de/serialization and@@ -62,7 +62,7 @@                        Data.Bond.Internal.Utils                        Data.Bond.Internal.Utils   build-depends:       base >= 4.7 && < 5-                     , bond-haskell-compiler >= 0.1.3.0 && < 0.1.4+                     , bond-haskell-compiler >= 0.1.4.0 && < 0.1.5                      , aeson                      , array                      , binary >= 0.7.0.0
test/simple_schemas/test.bond view
@@ -1,5 +1,7 @@ namespace unittest.simple +using mylist<T> = list<T>;+ struct base {     10: int16 m_int16;     20: string m_string;@@ -7,7 +9,7 @@  struct inner : base {     10: uint64 m_uint64;-    20: list<uint32> m_uint32;+    20: mylist<uint32> m_uint32; }  struct outer {