diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2020 Gabriel Gonzalez
+Copyright (c) 2020 Gabriella Gonzalez
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/dhall-bash.cabal b/dhall-bash.cabal
--- a/dhall-bash.cabal
+++ b/dhall-bash.cabal
@@ -1,12 +1,12 @@
 Name: dhall-bash
-Version: 1.0.40
+Version: 1.0.41
 Cabal-Version: >=1.10
 Build-Type: Simple
 License: BSD3
 License-File: LICENSE
-Copyright: 2017 Gabriel Gonzalez
-Author: Gabriel Gonzalez
-Maintainer: Gabriel439@gmail.com
+Copyright: 2017 Gabriella Gonzalez
+Author: Gabriella Gonzalez
+Maintainer: GenuineGabriella@gmail.com
 Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues
 Synopsis: Compile Dhall to Bash
 Description:
@@ -30,7 +30,7 @@
         base                      >= 4.11.0.0 && < 5   ,
         bytestring                               < 0.12,
         containers                               < 0.7 ,
-        dhall                     >= 1.41.0   && < 1.42,
+        dhall                     >= 1.42.0   && < 1.43,
         neat-interpolation                       < 0.6 ,
         shell-escape                             < 0.3 ,
         text                      >= 0.2      && < 2.1
diff --git a/src/Dhall/Bash.hs b/src/Dhall/Bash.hs
--- a/src/Dhall/Bash.hs
+++ b/src/Dhall/Bash.hs
@@ -292,6 +292,8 @@
     go e@(BoolEQ           {}) = Left (UnsupportedStatement e)
     go e@(BoolNE           {}) = Left (UnsupportedStatement e)
     go e@(BoolIf           {}) = Left (UnsupportedStatement e)
+    go e@(Bytes              ) = Left (UnsupportedStatement e)
+    go e@(BytesLit         {}) = Left (UnsupportedStatement e)
     go e@(Natural            ) = Left (UnsupportedStatement e)
     go e@(NaturalFold        ) = Left (UnsupportedStatement e)
     go e@(NaturalBuild       ) = Left (UnsupportedStatement e)
@@ -317,10 +319,13 @@
     go e@(TextShow         {}) = Left (UnsupportedStatement e)
     go e@(Date               ) = Left (UnsupportedStatement e)
     go e@(DateLiteral      {}) = Left (UnsupportedStatement e)
+    go e@(DateShow           ) = Left (UnsupportedStatement e)
     go e@(Time               ) = Left (UnsupportedStatement e)
     go e@(TimeLiteral      {}) = Left (UnsupportedStatement e)
+    go e@(TimeShow           ) = Left (UnsupportedStatement e)
     go e@(TimeZone           ) = Left (UnsupportedStatement e)
     go e@(TimeZoneLiteral  {}) = Left (UnsupportedStatement e)
+    go e@(TimeZoneShow       ) = Left (UnsupportedStatement e)
     go e@(List               ) = Left (UnsupportedStatement e)
     go e@(ListAppend       {}) = Left (UnsupportedStatement e)
     go e@(ListBuild          ) = Left (UnsupportedStatement e)
