diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -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.
diff --git a/rel8.cabal b/rel8.cabal
--- a/rel8.cabal
+++ b/rel8.cabal
@@ -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:
diff --git a/src/Rel8.hs b/src/Rel8.hs
--- a/src/Rel8.hs
+++ b/src/Rel8.hs
@@ -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.
