wxdirect 0.13.1.2 → 0.13.1.3
raw patch · 3 files changed
+5/−3 lines, 3 filesdep ~containersPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: containers
API changes (from Hackage documentation)
Files
- src/CompileClasses.hs +1/−0
- src/ParseEiffel.hs +2/−1
- wxdirect.cabal +2/−2
src/CompileClasses.hs view
@@ -100,6 +100,7 @@ , "" , "import qualified Data.ByteString as B (ByteString, useAsCStringLen)" , "import qualified Data.ByteString.Lazy as LB (ByteString, length, unpack)"+ , "import Foreign.C.Types" , "import System.IO.Unsafe( unsafePerformIO )" , "import " ++ moduleRoot ++ "WxcTypes" , "import " ++ moduleRoot ++ moduleClassTypesName
src/ParseEiffel.hs view
@@ -20,6 +20,7 @@ import Types import System.Environment ( getEnv )+import System.IO.Error (catchIOError) {----------------------------------------------------------------------------------------- Testing@@ -33,7 +34,7 @@ getDefaultEiffelFiles :: IO [FilePath] getDefaultEiffelFiles- = do wxwin <- getEnv "WXWIN" `catch` \err -> return ""+ = do wxwin <- getEnv "WXWIN" `catchIOError` \err -> return "" return [wxwin ++ "/wxc/include/wxc_defs.e" ,wxwin ++ "/wxc/ewxw/eiffel/spec/r_2_4/wx_defs.e"]
wxdirect.cabal view
@@ -1,5 +1,5 @@ name: wxdirect-version: 0.13.1.2+version: 0.13.1.3 license: BSD3 license-file: LICENSE author: Daan Leijen@@ -68,7 +68,7 @@ if flag(splitBase) build-depends: base >= 4 && < 5,- containers >= 0.2 && < 0.5+ containers >= 0.2 && < 0.6 else build-depends: base >= 3 && < 4,