packages feed

yesod-bin 1.4.3.7 → 1.4.3.9

raw patch · 4 files changed

+12/−8 lines, 4 files

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.4.3.9++* Scaffold update: minimal scaffold uses yesod-core instead of yesod [yesodweb/yesod-scaffold#65](https://github.com/yesodweb/yesod-scaffold/issues/65)+ ## 1.4.3.8  * Scaffold update: fix 404 for missing sourcemap
Devel.hs view
@@ -321,7 +321,7 @@ mkRebuild :: String -> FilePath -> DevelOpts -> (FilePath, FilePath) -> IO (IO Bool) mkRebuild ghcVer cabalFile opts (ldPath, arPath)   | GHC.cProjectVersion /= ghcVer =-       failWith "Yesod has been compiled with a different GHC version, please reinstall"+       failWith "Yesod has been compiled with a different GHC version, please reinstall yesod-bin"   | forceCabal opts               = return (rebuildCabal opts)   | otherwise                     =       return $ do
hsfiles/minimal.hsfiles view
@@ -31,7 +31,7 @@ module Add where  import Foundation-import Yesod+import Yesod.Core  getAddR :: Int -> Int -> Handler TypedContent getAddR x y = selectRep $ do@@ -49,7 +49,7 @@ module Application where  import Foundation-import Yesod+import Yesod.Core  import Add import Home@@ -63,7 +63,7 @@ {-# LANGUAGE ViewPatterns      #-} module Foundation where -import Yesod+import Yesod.Core  data App = App @@ -77,7 +77,7 @@ module Home where  import Foundation-import Yesod+import Yesod.Core  getHomeR :: Handler Html getHomeR = defaultLayout $ do@@ -92,7 +92,7 @@ {-# START_FILE Main.hs #-} import Application () -- for YesodDispatch instance import Foundation-import Yesod+import Yesod.Core  main :: IO () main = warp 3000 App@@ -115,7 +115,7 @@   ghc-options:      -Wall -fwarn-tabs -O2    build-depends:  base-                , yesod+                , yesod-core    ghc-options:    -threaded -O2 -rtsopts -with-rtsopts=-N 
yesod-bin.cabal view
@@ -1,5 +1,5 @@ name:            yesod-bin-version:         1.4.3.7+version:         1.4.3.9 license:         MIT license-file:    LICENSE author:          Michael Snoyman <michael@snoyman.com>