hasql-th 0.3 → 0.3.0.1
raw patch · 2 files changed
+6/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- hasql-th.cabal +3/−1
- library/Hasql/TH.hs +3/−3
hasql-th.cabal view
@@ -1,5 +1,5 @@ name: hasql-th-version: 0.3+version: 0.3.0.1 category: Hasql, Database, PostgreSQL, Template Haskell synopsis: Template Haskell utilities for Hasql description:@@ -7,6 +7,8 @@ bringing compile-time syntax checking, great simplification of declaration of statements and other TemplateHaskell-based utilities.+ .+ For details please see <https://github.com/nikita-volkov/hasql-th the readme>. homepage: https://github.com/nikita-volkov/hasql-th bug-reports: https://github.com/nikita-volkov/hasql-th/issues author: Nikita Volkov <nikita.y.volkov@mail.ru>
library/Hasql/TH.hs view
@@ -32,10 +32,10 @@ You can use it to specify the nullability of array elements: - >>> :t [singletonStatement| select a :: int4[]? |]+ >>> :t [singletonStatement| select a :: int4?[] |] ...- :: Data.Vector.Generic.Base.Vector v Int32 =>- Statement () (Maybe (v Int32))+ :: Data.Vector.Generic.Base.Vector v (Maybe Int32) =>+ Statement () (v (Maybe Int32)) And of arrays themselves: