diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,12 +1,21 @@
 CHANGELOG
 =========
 
+Version 0.2.2.2
+---------------
+
+*November 25, 2018*
+
+<https://github.com/mstksg/hakyll-dhall/releases/tag/v0.2.2.2>
+
+*   Compatibility with *dhall-1.19*.
+
 Version 0.2.2.1
 ---------------
 
 *October 17, 2018*
 
-<https://github.com/mstksg/backprop/releases/tag/v0.2.2.1>
+<https://github.com/mstksg/hakyll-dhall/releases/tag/v0.2.2.1>
 
 *   Compatibility with *dhall-1.18*.
 
@@ -15,7 +24,7 @@
 
 *October 9, 2018*
 
-<https://github.com/mstksg/backprop/releases/tag/v0.2.2.0>
+<https://github.com/mstksg/hakyll-dhall/releases/tag/v0.2.2.0>
 
 *   Add `renderDhallExprWith`, to separate out functionality from
     `dhallPrettyCompilerWith`.
@@ -31,17 +40,17 @@
 *   [v0.2.1.1][]: Rearranging documentation.
 *   [v0.2.1.0][]: Swap argument order for `parseDhall` and `parseDhallWith`.
 
-[v0.2.1.0]: https://github.com/mstksg/backprop/releases/tag/v0.2.1.0
-[v0.2.1.1]: https://github.com/mstksg/backprop/releases/tag/v0.2.1.1
-[v0.2.1.2]: https://github.com/mstksg/backprop/releases/tag/v0.2.1.2
-[v0.2.1.3]: https://github.com/mstksg/backprop/releases/tag/v0.2.1.3
+[v0.2.1.0]: https://github.com/mstksg/hakyll-dhall/releases/tag/v0.2.1.0
+[v0.2.1.1]: https://github.com/mstksg/hakyll-dhall/releases/tag/v0.2.1.1
+[v0.2.1.2]: https://github.com/mstksg/hakyll-dhall/releases/tag/v0.2.1.2
+[v0.2.1.3]: https://github.com/mstksg/hakyll-dhall/releases/tag/v0.2.1.3
 
 Version 0.2.0.0
 ---------------
 
 *October 8, 2018*
 
-<https://github.com/mstksg/backprop/releases/tag/v0.2.0.0>
+<https://github.com/mstksg/hakyll-dhall/releases/tag/v0.2.0.0>
 
 *   Revamped workflow; largely incompatible with v0.1.0.0.
 
@@ -50,6 +59,6 @@
 
 *October 7, 2018*
 
-<https://github.com/mstksg/backprop/releases/tag/v0.1.0.0>
+<https://github.com/mstksg/hakyll-dhall/releases/tag/v0.1.0.0>
 
 *   Initial release
diff --git a/hakyll-dhall.cabal b/hakyll-dhall.cabal
--- a/hakyll-dhall.cabal
+++ b/hakyll-dhall.cabal
@@ -1,11 +1,13 @@
--- This file has been generated from package.yaml by hpack version 0.28.2.
+cabal-version: 1.12
+
+-- This file has been generated from package.yaml by hpack version 0.31.0.
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: ef89e371678d3b82ba96ce7054952afca83963bc844c2bc90f079dd541da998d
+-- hash: 71ed27b0b23bc5be30c2812fb6e555b961beb211f959d6ada0f612daf17420c1
 
 name:           hakyll-dhall
-version:        0.2.2.1
+version:        0.2.2.2
 synopsis:       Dhall compiler for Hakyll
 description:    Hakyll compiler and loader for Dhall files.  Functions are intended to track
                 all local dependencies within the project directory, so rebuilds are
@@ -24,10 +26,9 @@
 license-file:   LICENSE
 tested-with:    GHC >= 8.2 && < 8.8
 build-type:     Simple
-cabal-version:  >= 1.10
 extra-source-files:
-    CHANGELOG.md
     README.md
+    CHANGELOG.md
     test-dhall/foo.dhall
     test-dhall/parse-test.dhall
     test-dhall/test-file.dhall
diff --git a/src/Hakyll/Web/Dhall.hs b/src/Hakyll/Web/Dhall.hs
--- a/src/Hakyll/Web/Dhall.hs
+++ b/src/Hakyll/Web/Dhall.hs
@@ -118,7 +118,7 @@
         . CBOR.toBuilder
         . CBOR.encodeTerm
 #if MIN_VERSION_dhall(1,18,0)
-        . encodeWithVersion V_3_0_0
+        . encodeWithVersion defaultStandardVersion
 #else
         . encode V_1_0
 #endif
