All Versions
11
Latest Version
Avg Release Cycle
85 days
Latest Release
3198 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.0 Changes
December 19, 2015- โ Add Stack support
- ๐ท Run CI for multiple GHC versions (provided by Stack)
- โ Increase QuickCheck generated test cases to 1e4 per test
-
v0.3 Changes
December 19, 2014- โ Add
Debug
module, which is a drop-in replacement for the ordinary API.
However, a message is emitted viaDebug.Trace
every time a type
representation is calculated, which makes it possible to debug proper
sharing/caching.
- โ Add
-
v0.2.3 Changes
August 15, 2014- Decoding now caches as well for
Hashed*
representations. This saves recalculating theTypeRep
of the expected type, which previously was the bottleneck. Both encoding and decoding speeds are now very close to untypedBinary
.
- Decoding now caches as well for
-
v0.2.2 Changes
July 29, 2014- โ Add
Hashed5
type representation that has no size overhead compared to
Untyped
- โ Add script to upload documentation to Hackage, since with the use of the new
๐Typeable
GHC 7.6.3, which Hackage currently runs, cannot build the docs
itself.
- โ Add
-
v0.2.1.0 Changes
July 27, 2014- ๐ Fix sharing not working at all (bad
encodeTyped
implementation) - Pre-calculate certain functions in the benchmarks so they can be properly
shared among invocations
- ๐ Fix sharing not working at all (bad
-
v0.2
-
v0.2.0.1 Changes
July 25, 2014- ๐ Fix whitespace in docs to make the docs build properly on Hackage, which
presumably has an older Haddock version
- ๐ Fix whitespace in docs to make the docs build properly on Hackage, which
-
v0.2.0.0 Changes
July 25, 2014- โ Add
Hashed32
type representation with 32 bit, more suitable for short data
than the previousHashed
, which was implicitly 64 bit long.Hashed64
is
also available in case the longer hash is needed. - Type representations are now automatically cached by
encodeTyped
. If this
data is long enough, it is even serialized in advance as well.
- โ Add
-
v0.1
-
v0.1.0.1 Changes
July 29, 2014- โ Add testsuite to compare generated message lengths with vanilla
Binary
and the various different typed serializations. - ๐ The .cabal file is hopefully fixed so that Hackage is able to build the docs automatically.
- โ Add testsuite to compare generated message lengths with vanilla