yeshql 3.0.1.2 → 3.0.1.3
raw patch · 3 files changed
+5/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +1/−1
- src/Database/YeshQL.hs +3/−3
- yeshql.cabal +1/−1
README.md view
@@ -42,7 +42,7 @@ ## Bugs -Probably. The project is hosted at https://bitbucket.org/tdammers/yeshql, feel+Probably. The project is hosted at https://github.com/tdammers/yeshql, feel free to comment there or send a message to tdammers@gmail.com if you find any. ## Something about the name
src/Database/YeshQL.hs view
@@ -40,7 +40,7 @@ ...will create a top-level function of type: @- insertUser :: IConnection conn => conn -> String -> IO (Maybe Integer)+ insertUser :: IConnection conn => String -> conn -> IO (Maybe Integer) @ Using plain TH, it can also be written as:@@ -143,8 +143,8 @@ ...will produce the function: @-getUserEx :: IConnection conn => conn -> Integer -> String -> IO [(Integer, String)]-getUserEx conn id filename =+getUserEx :: IConnection conn => Integer -> String -> conn -> IO [(Integer, String)]+getUserEx id filename conn = -- ... generated implementation left out @
yeshql.cabal view
@@ -1,5 +1,5 @@ name: yeshql-version: 3.0.1.2+version: 3.0.1.3 synopsis: YesQL-style SQL database abstraction description: Use quasi-quotations or TemplateHaskell to write SQL in SQL, while adding type annotations to turn SQL into well-typed Haskell