packages feed

yeshql 0.3.0.0 → 0.3.0.2

raw patch · 2 files changed

+2/−4 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

src/Database/YeshQL/Parser.hs view
@@ -17,7 +17,6 @@  import Data.List (foldl', nub) import Data.Maybe (catMaybes, fromMaybe)-import Debug.Trace (trace)  data ParsedType = PlainType String | MaybeType String | AutoType     deriving Show@@ -109,7 +108,6 @@  extractIsDDL :: [ParsedItem] -> Bool extractIsDDL items =-    trace (show items) $     not . null $ [ undefined | ParsedAnnotation DDLAnnotation <- items ]  parseQueryN :: String -> String -> Either ParseError ParsedQuery@@ -129,7 +127,6 @@ mainP :: Parsec String () ParsedQuery mainP = do     q <- queryP-    trace (show q) $ return ()     eof     return q 
yeshql.cabal view
@@ -1,5 +1,5 @@ name: yeshql-version: 0.3.0.0+version: 0.3.0.2 synopsis: YesQL-style SQL database abstraction description: license: MIT@@ -35,3 +35,4 @@                  , HDBC     hs-source-dirs: tests     main-is: tests.hs+    default-language: Haskell2010