File: CHANGELOG.md

package info (click to toggle)
haskell-cereal 0.5.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 168 kB
  • sloc: haskell: 1,636; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 1,166 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
41
0.5.7.0
=======
* Added `runPutMBuilder`

0.5.6.0
=======
* Added GSerializeGet and GSerializePut instances for V1

0.5.5.0
=======
* Added Semigroup instances

0.5.4.0
=======

* Allow building with older versions of GHC (thanks to Ryan Scott!)
* Additional putters for ints (thanks to Andrew Martin!)

0.5.2.0
======

* Implement the AMP recommended refactoring for the Functor/Applicative/Monad
  hierarchy for Get and PutM (thanks to Herbert Valerio Riedel!)
* Unconditionally support GHC generics (thanks to Eric Mertens!)
* Split the GSerialize class in two, to deal with a GHC bug (thanks Austin Seipp!)
* No longer use Enum in the Serialize instance for Bool (thanks Francesco Mazzoli!)

0.5.1.0
=======

* Re-enable GHC.Generics support which was accidentally removed in 0.5.0.0

0.5.0.0
=======

* Switch to using the builder provided by the `ByteString` package
* Change the encoding of Float and Double with the Serialize class to use the
  `Data.Serialize.IEEE754` module
* Add support for encoding and decoding `ShortByteString`
* New and improved test suite thanks to Kei Hibino
* Fix two bugs involving the `lookAhead` combinator and partial chunks.