bytestring 0.12.0.1 → 0.12.0.2
raw patch · 3 files changed
+16/−2 lines, 3 files
Files
- Changelog.md +14/−0
- bytestring.cabal +1/−1
- cbits/is-valid-utf8.c +1/−1
Changelog.md view
@@ -1,3 +1,10 @@+[0.12.0.2] — August 2023++* Bug fixes:+ * [Fix `clockid_t`-related build failures on some platforms](https://github.com/haskell/bytestring/pull/607)++[0.12.0.2]: https://github.com/haskell/bytestring/compare/0.12.0.1...0.12.0.2+ [0.12.0.1] — August 2023 * Bug fixes:@@ -37,6 +44,13 @@ [0.12.0.0]: https://github.com/haskell/bytestring/compare/0.11.5.0...0.12.0.0++[0.11.5.2] — August 2023++* Bug fixes:+ * [Fix `clockid_t`-related build failures on some platforms](https://github.com/haskell/bytestring/pull/607)++[0.11.5.2]: https://github.com/haskell/bytestring/compare/0.11.5.1...0.11.5.2 [0.11.5.1] — August 2023
bytestring.cabal view
@@ -1,5 +1,5 @@ Name: bytestring-Version: 0.12.0.1+Version: 0.12.0.2 Synopsis: Fast, compact, strict and lazy byte strings with a list interface Description: An efficient compact, immutable byte string type (both strict and lazy)
cbits/is-valid-utf8.c view
@@ -50,7 +50,7 @@ #endif #include <MachDeps.h>-#include "Rts.h"+#include "ghcplatform.h" #ifdef WORDS_BIGENDIAN #define to_little_endian(x) __builtin_bswap64(x)