cpphs 1.20.7 → 1.20.8
raw patch · 5 files changed
+8/−12 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG +1/−0
- Language/Preprocessor/Cpphs/ReadFirst.hs +1/−0
- cpphs.cabal +1/−1
- cpphs.hs +1/−1
- docs/index.html +4/−10
CHANGELOG view
@@ -8,6 +8,7 @@ * (1.20.5): revert change in 1.20.4 * (1.20.6): minor bugfix for crash in obscure corner case * (1.20.7): bugfix for windows drive letter in #include+ * (1.20.8): another bugfix for windows drive letter in #include Version 1.19 ------------
Language/Preprocessor/Cpphs/ReadFirst.hs view
@@ -39,6 +39,7 @@ readFirst name demand path warn = case name of -- Windows drive in absolute path+ c:':':'\\':nm-> try nm (Just (c:':':[])) [""] c:':':'/':nm -> try nm (Just (c:':':[])) [""] -- Windows drive in relative path c:':':nm -> try nm (Just (c:':':[])) (cons dd (".":path))
cpphs.cabal view
@@ -1,5 +1,5 @@ Name: cpphs-Version: 1.20.7+Version: 1.20.8 Copyright: 2004-2017, Malcolm Wallace License: LGPL License-File: LICENCE-LGPL
cpphs.hs view
@@ -21,7 +21,7 @@ import Data.List ( isPrefixOf ) version :: String-version = "1.20.7"+version = "1.20.8" main :: IO () main = do
docs/index.html view
@@ -198,11 +198,11 @@ <b>Current stable version:</b> <p>-cpphs-1.20.7, release date 2017-06-21<br>+cpphs-1.20.8, release date 2017-06-22<br> By HTTP: <a href="http://hackage.haskell.org/package/cpphs">Hackage</a>. <ul>-<li> (1.20.7) bugfix for windows drive letters in #includes.+<li> (1.20.8) another bugfix for windows drive letters in #includes. </ul> <p>@@ -226,18 +226,12 @@ <b>Older versions:</b> <p>-cpphs-1.20.7, release date 2017-06-21<br>+cpphs-1.20.8, release date 2017-06-22<br> By HTTP: <a href="http://hackage.haskell.org/package/cpphs">Hackage</a>. <ul>+<li> (1.20.8) another bugfix for windows drive letters in #includes. <li> (1.20.7) bugfix for windows drive letters in #includes.-</ul>--<p>-cpphs-1.20.6, release date 2017-06-21<br>-By HTTP:-<a href="http://hackage.haskell.org/package/cpphs">Hackage</a>.-<ul> <li> (1.20.6) minor bugfix to avoid a crash in an obscure corner case </ul>