flatbuffers-parser 0.1.1.0 → 0.2.0.0
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
- Flatbuffers.Parser: UnsupportedUnionTag :: Error
+ Flatbuffers.Parser: UnsupportedUnionTag :: !Word8 -> Error
- Flatbuffers.Parser: structs :: forall a. Prim a => TableParser (PrimArray a)
+ Flatbuffers.Parser: structs :: Prim a => TableParser (PrimArray a)
Files
flatbuffers-parser.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.4 name: flatbuffers-parser-version: 0.1.1.0+version: 0.2.0.0 synopsis: Parse flatbuffers license: BSD-3-Clause license-file: LICENSE
src/Flatbuffers/Parser.hs view
@@ -112,7 +112,7 @@ | ExpectedWord8EqButGot !Word8 !Word8 | ExpectedWord16EqButGot !Word16 !Word16 | MissingFieldWithIndex !Int- | UnsupportedUnionTag+ | UnsupportedUnionTag !Word8 deriving (Show) type Parser :: Type -> Type