diff --git a/apiary-purescript.cabal b/apiary-purescript.cabal
--- a/apiary-purescript.cabal
+++ b/apiary-purescript.cabal
@@ -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
diff --git a/src/Web/Apiary/PureScript.hs b/src/Web/Apiary/PureScript.hs
--- a/src/Web/Apiary/PureScript.hs
+++ b/src/Web/Apiary/PureScript.hs
@@ -2,7 +2,8 @@
 {-# LANGUAGE Rank2Types #-}
 
 module Web.Apiary.PureScript
-    ( I.PureScriptConfig(..)
+    ( I.PureScript
+    , I.PureScriptConfig(..)
     , initPureScript
     , pureScript
     ) where
diff --git a/src/Web/Apiary/PureScript/Internal.hs b/src/Web/Apiary/PureScript/Internal.hs
--- a/src/Web/Apiary/PureScript/Internal.hs
+++ b/src/Web/Apiary/PureScript/Internal.hs
@@ -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" }
 
