diff --git a/dhall-bash.cabal b/dhall-bash.cabal
--- a/dhall-bash.cabal
+++ b/dhall-bash.cabal
@@ -1,6 +1,6 @@
 Name: dhall-bash
-Version: 1.0.29
-Cabal-Version: >=1.8.0.2
+Version: 1.0.30
+Cabal-Version: >=1.10
 Build-Type: Simple
 Tested-With: GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1
 License: BSD3
@@ -31,12 +31,13 @@
         base                      >= 4.8.0.0 && < 5   ,
         bytestring                              < 0.11,
         containers                              < 0.7 ,
-        dhall                     >= 1.31.0  && < 1.32,
-        neat-interpolation                      < 0.5 ,
+        dhall                     >= 1.31.0  && < 1.33,
+        neat-interpolation                      < 0.6 ,
         shell-escape                            < 0.3 ,
         text                      >= 0.2     && < 1.3
     Exposed-Modules: Dhall.Bash
     GHC-Options: -Wall
+    Default-Language: Haskell2010
 
 Executable dhall-to-bash
     Hs-Source-Dirs: exec
@@ -51,3 +52,4 @@
         optparse-generic >= 1.1.1    && < 1.4 ,
         text
     GHC-Options: -Wall
+    Default-Language: Haskell2010
diff --git a/exec/Main.hs b/exec/Main.hs
--- a/exec/Main.hs
+++ b/exec/Main.hs
@@ -50,7 +50,7 @@
     (if unHelpful explain then Dhall.detailed else id) (handle (do
         inText <- Data.Text.IO.getContents
 
-        expr <- case Dhall.Parser.exprFromText "(stdin)" inText of
+        expr <- case Dhall.Parser.exprFromText "(input)" inText of
             Left  err  -> Control.Exception.throwIO err
             Right expr -> return expr
 
