diff --git a/intero.cabal b/intero.cabal
--- a/intero.cabal
+++ b/intero.cabal
@@ -1,7 +1,7 @@
 name:
   intero
 version:
-  0.0.0
+  0.1.0
 synopsis:
   Complete interactive development program for Haskell
 license:
diff --git a/src/GhciMonad.hs b/src/GhciMonad.hs
--- a/src/GhciMonad.hs
+++ b/src/GhciMonad.hs
@@ -126,7 +126,6 @@
         | ShowType              -- show the type of expressions
         | RevertCAFs            -- revert CAFs after every evaluation
         | Multiline             -- use multiline commands
-        | CollectInfo           -- collect and cache information about modules after load
         deriving Eq
 
 data BreakLocation
diff --git a/src/InteractiveUI.hs b/src/InteractiveUI.hs
--- a/src/InteractiveUI.hs
+++ b/src/InteractiveUI.hs
@@ -1411,9 +1411,8 @@
 
   GHC.setTargets targets
   flag <- doLoad False LoadAllTargets
-  doCollectInfo <- lift (isOptionSet CollectInfo)
   case flag of
-    Succeeded | doCollectInfo -> do
+    Succeeded -> do
       loaded <- getModuleGraph >>= filterM GHC.isLoaded . map GHC.ms_mod_name
       v <- lift (fmap mod_infos getGHCiState)
       !newInfos <- collectInfo v loaded
@@ -2431,7 +2430,6 @@
 strToGHCiOpt "s" = Just ShowTiming
 strToGHCiOpt "t" = Just ShowType
 strToGHCiOpt "r" = Just RevertCAFs
-strToGHCiOpt "c" = Just CollectInfo
 strToGHCiOpt _   = Nothing
 
 optToStr :: GHCiOption -> String
@@ -2439,7 +2437,6 @@
 optToStr ShowTiming = "s"
 optToStr ShowType   = "t"
 optToStr RevertCAFs = "r"
-optToStr CollectInfo = "c"
 
 
 -- ---------------------------------------------------------------------------
