packages feed

yaml 0.8.15.2 → 0.8.15.3

raw patch · 3 files changed

+9/−1 lines, 3 files

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+## 0.8.15.3++* Give a warning when compiling with GHCJS+ ## 0.8.15.2  * Canonicalise Monad instances [#76](https://github.com/snoyberg/yaml/pull/76)
Data/Yaml.hs view
@@ -16,7 +16,11 @@ -- -- For documentation on the @aeson@ types, functions, classes, and -- operators, please see the @Data.Aeson@ module of the @aeson@ package.+#if (defined (ghcjs_HOST_OS))+module Data.Yaml {-# WARNING "GHCJS is not supported yet (will break at runtime once called)." #-}+#else module Data.Yaml+#endif     ( -- * Types       Value (..)     , Parser
yaml.cabal view
@@ -1,5 +1,5 @@ name:            yaml-version:         0.8.15.2+version:         0.8.15.3 license:         BSD3 license-file:    LICENSE author:          Michael Snoyman <michael@snoyman.com>, Anton Ageev <antage@gmail.com>,Kirill Simonov