jmacro 0.6.6 → 0.6.7
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Language.Javascript.JMacro: SaneDouble :: Double -> SaneDouble
+ Language.Javascript.JMacro: newtype SaneDouble
Files
- Language/Javascript/JMacro/Base.hs +1/−1
- jmacro.cabal +1/−1
Language/Javascript/JMacro/Base.hs view
@@ -32,7 +32,7 @@ -- * Hash combinators jhEmpty, jhSingle, jhAdd, jhFromList, -- * Utility- jsSaturate, jtFromList+ jsSaturate, jtFromList, SaneDouble(..) ) where import Prelude hiding (tail, init, head, last, minimum, maximum, foldr1, foldl1, (!!), read) import Control.Applicative hiding (empty)
jmacro.cabal view
@@ -1,5 +1,5 @@ name: jmacro-version: 0.6.6+version: 0.6.7 synopsis: QuasiQuotation library for programmatic generation of Javascript code. description: Javascript syntax, functional syntax, hygienic names, compile-time guarantees of syntactic correctness, limited typechecking. Additional documentation available at <http://www.haskell.org/haskellwiki/Jmacro> category: Language