diff --git a/doctest-discover.cabal b/doctest-discover.cabal
--- a/doctest-discover.cabal
+++ b/doctest-discover.cabal
@@ -1,5 +1,5 @@
 name:                doctest-discover
-version:             0.1.0.6
+version:             0.1.0.7
 synopsis:            Easy way to run doctests via cabal
 description:         doctest-discover provides an easy way to run doctests via cabal
 license:             PublicDomain
@@ -11,14 +11,18 @@
 build-type:          Simple
 cabal-version:       >=1.10
 
+source-repository head
+  type: git
+  location: https://github.com/karun012/doctest-discover
+
 library
   default-language:    Haskell2010
-  build-depends:       base >=4.6 && <4.8, doctest, directory, filepath, aeson, bytestring
+  build-depends:       base >= 4.7 && < 5, doctest, directory, filepath, aeson, bytestring
   HS-Source-Dirs:      src
 
 executable doctest-discover
   default-language:    Haskell2010
-  build-depends:       base >=4.6 && <4.8, doctest, directory, filepath, aeson, bytestring
+  build-depends:       base >= 4.7 && < 5, doctest, directory, filepath, aeson, bytestring
   main-is:             Main.hs 
   other-modules:       Runner, Config
   HS-Source-Dirs:      src
@@ -28,5 +32,5 @@
   type:                exitcode-stdio-1.0
   ghc-options:         -threaded
   main-is:             Doctest-Main.hs
-  build-depends:       base >4 && <5, doctest-discover, doctest
+  build-depends:       base >= 4.7 && < 5, doctest-discover, doctest
   HS-Source-Dirs:      test
