packages feed

squeal-postgresql-qq 0.1.2.0 → 0.1.2.1

raw patch · 3 files changed

+10/−5 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,3 +1,8 @@+### 0.1.2.1++* No-op improvements+  * Minor documentation edits.+ ### 0.1.2.0  * New features
squeal-postgresql-qq.cabal view
@@ -1,6 +1,6 @@ cabal-version:       3.0 name:                squeal-postgresql-qq-version:             0.1.2.0+version:             0.1.2.1 synopsis:            QuasiQuoter transforming raw sql into Squeal expressions. -- description:          homepage:            https://github.com/owensmurray/squeal-postgresql-qq
src/Squeal/QuasiQuotes.hs view
@@ -68,10 +68,10 @@   See the [discussion](#discussion) section for why we monomorphize the   squeal 'Statement' in this way. -  = Haskell values+  = Inline Haskell Values -  The way you get Haskell values into your sql statements is with special-  bulit-in sql functions:+  If you don't want to use statement parameters, you can still get Haskell+  values into your statements is with special bulit-in sql functions:    * @inline(\<ident\>)@: Corresponds to     'Squeal.PostgreSQL.Expression.Inline.inline' (value being inlined must@@ -83,7 +83,7 @@   where @\<ident\>@ is a haskell identifier in scope, whose type has an   'Squeal.PostgreSQL.Inline' instance. -  = Example+  = Examples    For the examples, let's assume you have a database like this: