packages feed

mu-avro 0.4.0.3 → 0.4.0.4

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

mu-avro.cabal view
@@ -1,5 +1,5 @@ name:          mu-avro-version:       0.4.0.3+version:       0.4.0.4 synopsis:      Avro serialization support for Mu microservices description:   You can use @mu-avro@ to read AVRO Schema Declarations for mu-haskell
test/Avro.hs view
@@ -20,9 +20,9 @@  examplePerson1, examplePerson2 :: Person examplePerson1-  = Person "Haskellio" "Gomez" (Just 30) (Just Male) exampleAddress [1,2,3] M.empty+  = Person "Haskellio" "Gomez" (Just 30) Male exampleAddress [1,2,3] M.empty examplePerson2-  = Person "Cuarenta" "Siete" Nothing Nothing exampleAddress []+  = Person "Cuarenta" "Siete" Nothing Unspecified exampleAddress []            (M.fromList [("hola", 1), ("hello", 2)])  deriving via (WithSchema ExampleSchema "person" Person) instance HasAvroSchema Person