diff --git a/mortred.cabal b/mortred.cabal
--- a/mortred.cabal
+++ b/mortred.cabal
@@ -5,14 +5,20 @@
 -- see: https://github.com/sol/hpack
 
 name:           mortred
-version:        0.0.1
+version:        0.0.2
 synopsis:       Library for setting up and running scrapers with webdriver.
 description:    A set of setup- and helper-functions for using webdriver in Haskell, with auto-downloads of correct binaries.
 category:       web-scraping, selenium
+homepage:       https://github.com/quanterall/mortred#readme
+bug-reports:    https://github.com/quanterall/mortred/issues
 maintainer:     Rickard Andersson <gonz@severnatazvezda.com>
 license:        BSD2
 license-file:   LICENSE.txt
 build-type:     Simple
+
+source-repository head
+  type: git
+  location: https://github.com/quanterall/mortred
 
 library
   exposed-modules:
diff --git a/src/Mortred/Session.hs b/src/Mortred/Session.hs
--- a/src/Mortred/Session.hs
+++ b/src/Mortred/Session.hs
@@ -1,4 +1,12 @@
-module Mortred.Session where
+module Mortred.Session
+  ( tryStartSession,
+    startSession,
+    SessionMode (..),
+    SessionStartResult (..),
+    SessionStartError (..),
+    stopSession,
+  )
+where
 
 import Mortred.Selenium
 import Mortred.Types
