packages feed

Elm 0.1.1.3 → 0.1.1.4

raw patch · 3 files changed

+6/−6 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Elm.cabal view
@@ -1,6 +1,6 @@  Name:                Elm-Version:             0.1.1.3+Version:             0.1.1.4 Synopsis:            The Elm compiler and server. Description:         Elm aims to make client-side web-development more pleasant.                      It is a statically/strongly typed, functional reactive@@ -37,7 +37,7 @@                        Types, Constrain, Hints, Types, Unify      -- Packages needed in order to build this package.-  ghc-options:	       -O3 -rtsopts -auto-all -caf-all+  ghc-options:	       -O3   Build-depends:       base >=4.2 && <5, containers >= 0.3,                        transformers >= 0.2, mtl >= 2, parsec >= 3.1.1,                        blaze-html == 0.5.0.*, blaze-markup == 0.5.1.*,@@ -57,7 +57,7 @@                        Rename, Language.Elm, Binop, Combinators, Lexer,                        ParsePatterns, Parser, ParserLib, ParseTypes, Tokens,                        Types, Constrain, Hints, Types, Unify-  ghc-options:	       -O3 -rtsopts -auto-all -caf-all+  ghc-options:	       -O3   Build-depends:       base >=4.2 && <5, containers >= 0.3, transformers >= 0.2,                        mtl >= 2, parsec >= 3.1.1, blaze-html == 0.5.0.*,                        HTTP >= 4000, happstack-server == 7.0.2,
src/Compiler.hs view
@@ -10,7 +10,7 @@ main = getArgs >>= parse  parse ("--help":_) = putStrLn usage-parse ("--version":_) = putStrLn "The Elm Compiler 0.1.1.3"+parse ("--version":_) = putStrLn "The Elm Compiler 0.1.1.4" parse [loc,file]   | "--runtime-location=" `isPrefixOf` loc =       produceHtml (tail $ dropWhile (/='=') loc) file
src/Server.hs view
@@ -11,7 +11,7 @@  serve :: String -> IO () serve libLoc = do-  putStrLn "Elm Server 0.1.1.3: running at <http://localhost:8000>"+  putStrLn "Elm Server 0.1.1.4: running at <http://localhost:8000>"   simpleHTTP nullConf $ do          compressedResponseFilter          msum [ uriRest (serveElm libLoc)@@ -31,7 +31,7 @@ main = getArgs >>= parse  parse ("--help":_) = putStrLn usage-parse ("--version":_) = putStrLn "The Elm Server 0.1.1.3"+parse ("--version":_) = putStrLn "The Elm Server 0.1.1.4" parse [] = serve "/elm-mini.js" parse [arg]     | "--runtime-location=" `isPrefixOf` arg =