json-qq 0.4.0 → 0.4.1
raw patch · 2 files changed
+4/−3 lines, 2 filesdep ~basedep ~parsecPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, parsec
API changes (from Hackage documentation)
Files
- json-qq.cabal +3/−2
- src/Data/JSON/QQ.hs +1/−1
json-qq.cabal view
@@ -1,5 +1,5 @@ name: json-qq-version: 0.4.0+version: 0.4.1 synopsis: Json Quasiquatation library for Haskell. -- A longer description of the package.@@ -23,7 +23,8 @@ library hs-source-dirs: src exposed-modules: Data.JSON.QQ- build-depends: base >= 4.3 && < 5, parsec >= 2 && < 3, template-haskell, haskell-src-meta >= 0.1.0+ build-depends: base >= 4.3 && < 5, parsec >= 2, template-haskell, haskell-src-meta >= 0.1.0+ source-repository head type: git
src/Data/JSON/QQ.hs view
@@ -1,6 +1,6 @@ {-# OPTIONS_GHC -XTemplateHaskell -XQuasiQuotes -XUndecidableInstances #-} --- | This package expose the parser @sonParser@.+-- | This package expose the parser @jsonParser@. -- -- Only developers that develop new json quasiquoters should use this library! --