diff --git a/dhall-bash.cabal b/dhall-bash.cabal
--- a/dhall-bash.cabal
+++ b/dhall-bash.cabal
@@ -1,8 +1,8 @@
 Name: dhall-bash
-Version: 1.0.18
+Version: 1.0.19
 Cabal-Version: >=1.8.0.2
 Build-Type: Simple
-Tested-With: GHC == 7.10.2, GHC == 8.0.1
+Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1
 License: BSD3
 License-File: LICENSE
 Copyright: 2017 Gabriel Gonzalez
@@ -31,7 +31,7 @@
         base                      >= 4.8.0.0 && < 5   ,
         bytestring                              < 0.11,
         containers                              < 0.7 ,
-        dhall                     >= 1.18.0  && < 1.21,
+        dhall                     >= 1.18.0  && < 1.22,
         neat-interpolation                      < 0.4 ,
         shell-escape                            < 0.3 ,
         text                      >= 0.2     && < 1.3
diff --git a/src/Dhall/Bash.hs b/src/Dhall/Bash.hs
--- a/src/Dhall/Bash.hs
+++ b/src/Dhall/Bash.hs
@@ -302,6 +302,7 @@
     go e@(DoubleShow      ) = Left (UnsupportedStatement e)
     go e@(Text            ) = Left (UnsupportedStatement e)
     go e@(TextAppend    {}) = Left (UnsupportedStatement e)
+    go e@(TextShow      {}) = Left (UnsupportedStatement e)
     go e@(List            ) = Left (UnsupportedStatement e)
     go e@(ListAppend    {}) = Left (UnsupportedStatement e)
     go e@(ListBuild       ) = Left (UnsupportedStatement e)
@@ -323,7 +324,6 @@
     go e@(CombineTypes  {}) = Left (UnsupportedStatement e)
     go e@(Prefer        {}) = Left (UnsupportedStatement e)
     go e@(Merge         {}) = Left (UnsupportedStatement e)
-    go e@(Constructors  {}) = Left (UnsupportedStatement e)
     go e@(Field         {}) = Left (UnsupportedStatement e)
     go e@(Project       {}) = Left (UnsupportedStatement e)
     go e@(ImportAlt     {}) = Left (UnsupportedStatement e)
