forked from Quid2/flat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
30 lines (24 loc) · 1.43 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Significant and compatibility-breaking changes.
Version 0.4.4:
- Added instances for Identity, Monoid.Dual/All/Any/Sum/Product/Alt, Semigroup.Min/Max/First/Last/Option
Version 0.4.2:
- Fixed links in README.md
- Added multiple stack.yaml files for different LTS
Version 0.4:
- Compatibility with ghc 8.8.3
- Data.Seq.Seq is serialised as a List (previously was serialised as an Array)
- Changed namespace from Data.Flat to Flat
- Addtional Flat Instances for some common packages: array, base, bytestring, containers, dlist, text, unordered-containers, vector
- Additional doctests, with a static version that can run without ghci and therefore also under ghcjs/eta (run it with stack test :doc-static)
- Many minor changes
Version 0.3.4:
- Redisegned Generics-based instance generation (Data.Flat.Class) to reduce compilation time and improve encoding and decoding performance
- Fixed GHCJS Double bug and tested GHCJS with full test suite
Version 0.3.2:
- Tested with ghc 8.2.1
- Dropped dependencies on the 'cpu', 'derive' and 'tasty' packages to make it compatible with the Eta compiler (https://github.com/typelead/eta)
Version 0.3:
- Removed 'flatStrict' and 'unflatStrict' (use 'flat' and 'unflat' instead that also encode/decode strictly)
- `unflatWith` now takes a decoder for the unpadded value (previously it expected a padded decoder) and decodes the padded value
- Added some decoding primitives
- Added Data.ByteString.Convert