bytes 0.10 → 0.10.1
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.markdown +4/−0
- bytes.cabal +1/−1
- cbits/i2d.c +1/−1
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+0.10.1+------+* Fixed typo in `cbits/i2d.c` that was causing a linking error.+ 0.10 ---- * Changed all of the byte orders to big-endian by default *except* for `Word` and `Int`, which are variable sized.
bytes.cabal view
@@ -1,6 +1,6 @@ name: bytes category: Data, Serialization-version: 0.10+version: 0.10.1 license: BSD3 cabal-version: >= 1.8 license-file: LICENSE
cbits/i2d.c view
@@ -26,7 +26,7 @@ return u.l; } -float word32ToDouble(unsigned long long input) {+float word32ToFloat(unsigned long long input) { union { float f; unsigned long long l;