diff --git a/dhall-bash.cabal b/dhall-bash.cabal
--- a/dhall-bash.cabal
+++ b/dhall-bash.cabal
@@ -1,5 +1,5 @@
 Name: dhall-bash
-Version: 1.0.24
+Version: 1.0.25
 Cabal-Version: >=1.8.0.2
 Build-Type: Simple
 Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1
@@ -31,7 +31,7 @@
         base                      >= 4.8.0.0 && < 5   ,
         bytestring                              < 0.11,
         containers                              < 0.7 ,
-        dhall                     >= 1.27.0  && < 1.28,
+        dhall                     >= 1.28.0  && < 1.29,
         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
@@ -300,6 +300,8 @@
     go e@(NaturalPlus      {}) = Left (UnsupportedStatement e)
     go e@(NaturalTimes     {}) = Left (UnsupportedStatement e)
     go e@(Integer            ) = Left (UnsupportedStatement e)
+    go e@(IntegerClamp       ) = Left (UnsupportedStatement e)
+    go e@(IntegerNegate      ) = Left (UnsupportedStatement e)
     go e@(IntegerShow        ) = Left (UnsupportedStatement e)
     go e@(IntegerToDouble    ) = Left (UnsupportedStatement e)
     go e@(Double             ) = Left (UnsupportedStatement e)
