rel8 1.0.0.0 → 1.0.0.1
raw patch · 3 files changed
+20/−1 lines, 3 files
Files
- Changelog.md +4/−0
- rel8.cabal +7/−1
- src/Rel8.hs +9/−0
Changelog.md view
@@ -1,3 +1,7 @@+# 1.0.0.1 (2021-06-21)++This release contains various fixes for documentation.+ # 1.0.0.0 (2021-06-18) * Initial release.
rel8.cabal view
@@ -1,15 +1,21 @@ cabal-version: 2.0 name: rel8-version: 1.0.0.0+version: 1.0.0.1 synopsis: Hey! Hey! Can u rel8? license: BSD3 license-file: LICENSE author: Oliver Charles maintainer: ollie@ocharles.org.uk+homepage: https://github.com/circuithub/rel8+bug-reports: https://github.com/circuithub/rel8/issues build-type: Simple extra-doc-files: README.md Changelog.md++source-repository head+ type: git+ location: https://github.com/circuithub/rel8 library build-depends:
src/Rel8.hs view
@@ -241,6 +241,8 @@ , Result -- * Running statements+ -- $running+ -- ** @SELECT@ , select @@ -362,3 +364,10 @@ import Rel8.Type.Semigroup import Rel8.Type.String import Rel8.Type.Sum+++-- $running+-- To run queries and otherwise interact with a PostgreSQL database, Rel8+-- provides 'select', 'insert', 'update' and 'delete' functions. Note that+-- 'insert', 'update' and 'delete' will generally need the+-- `DuplicateRecordFields` language extension enabled.