MissingH 1.6.0.0 → 1.6.0.1
raw patch · 5 files changed
+19/−8 lines, 5 filesdep ~containersdep ~filepathdep ~networkPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: containers, filepath, network, time
API changes (from Hackage documentation)
Files
- CHANGES.md +10/−0
- MissingH.cabal +5/−3
- src/System/IO/PlafCompat.hs +1/−1
- src/System/IO/WindowsCompat.hs +1/−1
- testsrc/Strtest.hs +2/−3
CHANGES.md view
@@ -1,3 +1,13 @@+# 1.6.0.1++_Andreas Abel, 2023-09-11_++- Repair build on Windows with GHC 9.6 (`directory-1.3.8.*`):+ Revoke `Safe` status of these modules:+ * `System.IO.WindowsCompat`+ * `System.IO.PlafCompat`+- Tested with GHC 7.10 - 9.8 alpha1.+ # 1.6.0.0 _Andreas Abel, 2023-01-14_
MissingH.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.12 name: MissingH-version: 1.6.0.0+version: 1.6.0.1 build-type: Simple license: BSD3@@ -10,8 +10,10 @@ license-file: LICENSE tested-with:- GHC == 9.4.4- GHC == 9.2.5+ GHC == 9.8.0+ GHC == 9.6.2+ GHC == 9.4.7+ GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4
src/System/IO/PlafCompat.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE CPP #-}-{-# LANGUAGE Safe #-}+ {- Platform Compatibility Layer Copyright (c) 2005-2011 John Goerzen <jgoerzen@complete.org>
src/System/IO/WindowsCompat.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE CPP #-}-{-# LANGUAGE Safe #-}+ {- Windows compatibility layer Copyright (c) 2005-2011 John Goerzen <jgoerzen@complete.org>
testsrc/Strtest.hs view
@@ -55,13 +55,13 @@ test_escapeRe = map (\i -> TestLabel (show $ chr i) $ TestCase $ assertEqual [chr i] (Just []) (matchRegex (mkRegex $ escapeRe $ [chr i]) [chr i]))- [1..255]+ [1..127] ++ [TestCase $ assertEqual "big string" (Just ([], teststr, [], [])) (matchRegexAll (mkRegex $ escapeRe teststr) teststr) ]- where teststr = map chr [1..255]+ where teststr = map chr [1..127] tests = TestList [TestLabel "lstrip" (TestList test_lstrip), TestLabel "rstrip" $ TestList test_rstrip,@@ -69,4 +69,3 @@ TestLabel "splitWs" $ TestList test_splitWs, TestLabel "escapeRe" $ TestList test_escapeRe ]-