opaleye 0.10.3.0 → 0.10.3.1
raw patch · 3 files changed
+13/−6 lines, 3 filesdep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bytestring
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- opaleye.cabal +2/−2
- src/Opaleye/Field.hs +7/−4
CHANGELOG.md view
@@ -1,3 +1,7 @@+## 0.10.3.1++* Improve Haddock+ ## 0.10.3.0 * Added `enumShowSqlType` and `sqlTypeWithSchema` (thanks to
opaleye.cabal view
@@ -1,6 +1,6 @@ name: opaleye copyright: Copyright (c) 2014-2018 Purely Agile Limited; 2019-2024 Tom Ellis-version: 0.10.3.0+version: 0.10.3.1 synopsis: An SQL-generating DSL targeting PostgreSQL description: An SQL-generating DSL targeting PostgreSQL. Allows Postgres queries to be written within Haskell in a@@ -30,7 +30,7 @@ hs-source-dirs: src build-depends: aeson >= 0.6 && < 2.3- , base >= 4.9 && < 4.20+ , base >= 4.9 && < 4.21 , base16-bytestring >= 0.1.1.6 && < 1.1 , case-insensitive >= 1.2 && < 1.3 , bytestring >= 0.10 && < 0.12
src/Opaleye/Field.hs view
@@ -4,13 +4,16 @@ -- you can use '*', '/', '+', '-' on them. To create 'Field_'s, see -- "Opaleye.ToFields" and "Opaleye.SqlTypes". ----- 'Field_' used to be called 'C.Column' and for technical reasons+-- 'Field_' used to be called t'C.Column' and for technical reasons -- there are still a few uses of the old name around. If you see--- @'C.Column' SqlType@ then you can understand it as @'Field'--- SqlType@, and if you see @'C.Column' ('C.Nullable' SqlType)@ then+-- @t'C.Column' SqlType@ then you can understand it as @'Field'+-- SqlType@, and if you see @t'C.Column' ( t'C.Nullable' SqlType )@ then -- you can understand it as @'FieldNullable' SqlType@. ----- 'C.Column' will be removed in version 0.11.+-- t'C.Column' will be removed in version 0.11.+--+-- (Due to Haddock formatting errors, this documentation previously+-- incorrectly stated that @Field_@ would be removed. It won't be!) {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE DataKinds #-}