jsonsql 0.1.2.0 → 0.1.2.1
raw patch · 3 files changed
+8/−2 lines, 3 files
Files
- Main.hs +1/−1
- README.md +6/−0
- jsonsql.cabal +1/−1
Main.hs view
@@ -156,7 +156,7 @@ literalJSON :: Value -> Text literalJSON x = - let t = T.decodeUtf8 . Prelude.head . BL.toChunks. encode $ x+ let t = mconcat . map T.decodeUtf8 . BL.toChunks. encode $ x in valToText . String $ t parseText :: Text -> [Chunk]
README.md view
@@ -47,6 +47,12 @@ INSERT into titles (title, year, rating, created) VALUES ('Interstellar', 2014, 8.9, DEFAULT); +## Install+++ cabal install jsonsql++ ## Usage
jsonsql.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: jsonsql-version: 0.1.2.0+version: 0.1.2.1 synopsis: Interpolate JSON object values into SQL strings -- description: homepage: https://github.com/danchoi/jsonsql