diff --git a/blip.cabal b/blip.cabal
--- a/blip.cabal
+++ b/blip.cabal
@@ -1,5 +1,5 @@
 Name:                blip 
-Version:             0.1.0
+Version:             0.2.0
 Synopsis:            Python to bytecode compiler.
 Homepage:            https://github.com/bjpop/blip  
 License:             BSD3
@@ -24,7 +24,7 @@
   main-is: Main.hs
   hs-source-dirs: src
   build-depends: base==4.*,
-     bliplib == 0.1.*,
+     bliplib == 0.2.*,
      -- directory == 1.2.*,
      filepath == 1.3.*,
      parseargs == 0.1.* ,
@@ -34,4 +34,5 @@
      bytestring==0.10.*,
      old-time==1.1.*,
      pretty==1.1.*
+     -- utf8-string==0.3.*
 }
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -128,7 +128,8 @@
 
 getDumps :: Args ArgIndex -> Set.Set Dumpable 
 getDumps args
-   = getDump DumpScope args `Set.union` getDump DumpAST args
+   = getDump DumpScope args `Set.union` 
+     getDump DumpAST args
    where
    getDump :: Dumpable -> Args ArgIndex -> Set.Set Dumpable
    getDump dumpable args
