diff --git a/changelog b/changelog
deleted file mode 100644
--- a/changelog
+++ /dev/null
@@ -1,3 +0,0 @@
-0.2.0
-
-* Initial release.
diff --git a/changelog.md b/changelog.md
new file mode 100644
--- /dev/null
+++ b/changelog.md
@@ -0,0 +1,3 @@
+0.2.0
+
+* Initial release.
diff --git a/papa-base-export.cabal b/papa-base-export.cabal
--- a/papa-base-export.cabal
+++ b/papa-base-export.cabal
@@ -1,22 +1,25 @@
 name:               papa-base-export
-version:            0.2.0
+version:            0.3.0
 license:            BSD3
 license-file:       LICENSE
-author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
-maintainer:         Tony Morris
+author:             Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
+maintainer:         Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
 copyright:          Copyright (c) 2017, Commonwealth Scientific and Industrial Research Organisation (CSIRO) ABN 41 687 119 230.
 synopsis:           Prelude with only useful functions
 category:           Prelude
-description:        Prelude with only useful functions
-homepage:           https://github.com/data61/papa-base-export
-bug-reports:        https://github.com/data61/papa-base-export/issues
+description:
+  <<http://i.imgur.com/uZnp9ke.png>>
+  .
+  Prelude with only useful functions
+homepage:           https://github.com/qfpl/papa
+bug-reports:        https://github.com/qfpl/papa/issues
 cabal-version:      >= 1.10
 build-type:         Custom
-extra-source-files: changelog
+extra-source-files: changelog.md
 
 source-repository   head
   type:             git
-  location:         git@github.com:data61/papa-base-export.git
+  location:         git@github.com:qfpl/papa.git
 
 flag                small_base
   description:      Choose the new, split-up base package.
@@ -27,6 +30,7 @@
 
   build-depends:
                     base >= 4.8 && < 5
+                  , semigroups >= 0.18 && < 0.19
                     
   ghc-options:
                     -Wall
diff --git a/src/Papa/Base/Export/Control/Monad.hs b/src/Papa/Base/Export/Control/Monad.hs
--- a/src/Papa/Base/Export/Control/Monad.hs
+++ b/src/Papa/Base/Export/Control/Monad.hs
@@ -6,7 +6,7 @@
 
 import Control.Monad as P(
     Functor(fmap)
-  , Monad((>>=))
+  , Monad((>>=), return, (>>))
   , MonadPlus(mzero, mplus)
   , forever
   , void
@@ -22,4 +22,3 @@
   , unless
   , (<$!>)
   )
-
