apiary-purescript 1.2.2 → 1.3.0
raw patch · 3 files changed
+7/−6 lines, 3 filesdep ~apiarydep ~purescriptPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: apiary, purescript
API changes (from Hackage documentation)
+ Web.Apiary.PureScript: data PureScript
Files
- apiary-purescript.cabal +4/−4
- src/Web/Apiary/PureScript.hs +2/−1
- src/Web/Apiary/PureScript/Internal.hs +1/−1
apiary-purescript.cabal view
@@ -1,5 +1,5 @@ name: apiary-purescript-version: 1.2.2+version: 1.3.0 synopsis: purescript compiler for apiary web framework. description: example: <https://github.com/philopon/apiary/blob/master/examples/pureScript.hs>@@ -9,7 +9,7 @@ maintainer: HirotomoMoriwaki<philopon.dependence@gmail.com> Homepage: https://github.com/philopon/apiary Bug-reports: https://github.com/philopon/apiary/issues-copyright: (c) 2014 Hirotomo Moriwaki+copyright: (c) 2014-2015 Hirotomo Moriwaki category: Web build-type: Simple stability: stable@@ -20,8 +20,8 @@ exposed-modules: Web.Apiary.PureScript other-modules: Web.Apiary.PureScript.Internal build-depends: base >=4.6 && <4.8- , apiary >=1.1 && <1.3- , purescript ==0.6.3.*+ , apiary >=1.1 && <1.4+ , purescript >=0.6 && <0.7 , filepath >=1.3 && <1.4 , utf8-string >=0.3 && <0.4
src/Web/Apiary/PureScript.hs view
@@ -2,7 +2,8 @@ {-# LANGUAGE Rank2Types #-} module Web.Apiary.PureScript- ( I.PureScriptConfig(..)+ ( I.PureScript+ , I.PureScriptConfig(..) , initPureScript , pureScript ) where
src/Web/Apiary/PureScript/Internal.hs view
@@ -52,7 +52,7 @@ "." False []- ["Generated by apiary-purescript. purescript version: " ++ "0.6.3"] -- TODO+ ["Generated by apiary-purescript. purescript version: " ++ VERSION_purescript] P.defaultCompileOptions { P.optionsMain = Just "Main" }