diff --git a/adb.cabal b/adb.cabal
--- a/adb.cabal
+++ b/adb.cabal
@@ -2,13 +2,12 @@
 -- see http://haskell.org/cabal/users-guide/
 
 name:                adb
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Android Debug Bridge (ADB) protocol
--- description:         
 license:             BSD3
 license-file:        LICENSE
 author:              Stephen Blackheath
-maintainer:          adb.protocol.stephen@blacksapphire.com
+maintainer:          Stephen Blackheath
 -- copyright:           
 category:            Network
 build-type:          Simple
@@ -24,6 +23,10 @@
                      Network/ADB/bigint.h
 cabal-version:       >=1.10
 
+source-repository head
+  type:     git
+  location: https://github.com/the-real-blackh/adb.git
+
 library
   exposed-modules:     Network.ADB.Transport,
                        Network.ADB.Client,
@@ -31,8 +34,8 @@
                        Network.ADB.Socket
   other-modules:       Network.ADB.Common
   other-extensions:    ScopedTypeVariables, FlexibleContexts, OverloadedStrings, ForeignFunctionInterface, EmptyDataDecls
-  build-depends:       base >=4.6 && <4.8,
-                       mtl >=2.1 && <2.2,
+  build-depends:       base >=4.6 && <4.11,
+                       mtl >=2.1 && <2.3,
                        bytestring >=0.10,
                        network >=2.4,
                        containers >=0.5,
diff --git a/programs/adb-shell.hs b/programs/adb-shell.hs
--- a/programs/adb-shell.hs
+++ b/programs/adb-shell.hs
@@ -78,7 +78,7 @@
         putStrLn ""
         putStrLn "Default port 5555 is used by a local Android emulator:"
         putStrLn "  Make sure you enable USB debugging in your emulator, which you'll"
-        putStrLn "  find under '{ } Developer options'"
+        putStrLn "  find in settings under '{ } Developer options'"
         putStrLn "  press ctrl-D or 'exit' to quit"
         putStrLn ""
         let hints = defaultHints { addrSocketType = Stream }
