zip 1.4.0 → 1.4.1
raw patch · 3 files changed
+7/−3 lines, 3 files
Files
- CHANGELOG.md +4/−0
- Codec/Archive/Zip/Unix.hs +2/−2
- zip.cabal +1/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+## Zip 1.4.1++* Fixed the build on Mac.+ ## Zip 1.4.0 * The “version made by” info inside archive now correctly sets Unix as the
Codec/Archive/Zip/Unix.hs view
@@ -28,7 +28,7 @@ -- @since 1.4.0 toFileMode :: Word32 -> CMode-toFileMode w = CMode $ (w `shiftR` 16) .&. 0x0fff+toFileMode attrs = fromIntegral $ (attrs `shiftR` 16) .&. 0x0fff -- | Convert external attributes to the file info. The function assumes a -- regular file and keeps DOS attributes untouched.@@ -39,4 +39,4 @@ -- @since 1.4.0 fromFileMode :: CMode -> Word32-fromFileMode (CMode c) = (0o100000 .|. c) `shiftL` 16+fromFileMode cmode = (0o100000 .|. fromIntegral cmode) `shiftL` 16
zip.cabal view
@@ -1,5 +1,5 @@ name: zip-version: 1.4.0+version: 1.4.1 cabal-version: 1.18 tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.3 license: BSD3